S
Stephanie
Hello. I have 4 fields: FirstName, NickName, LastName,
OldLastName.
There may not be a NickName and/or an OldLastName.
If there is a NickName, I want to use it rather than the
FirstName. If there is an OldLastName, I want to use it
rather than the LastName.
If Margaret (aka Peggy) Barton marries and changes her
last name to Smith, I want to see Peggy Smith. I was OK
until I added in the OldLastName bit. Thanks, IIf and Nz
confuse me. Here's what I had:
=IIf(IsNull(Forms!Individuals!NickName),Forms!Individuals!
FirstName & " " & Forms!Individuals!LastName,Forms!
Individuals!Nickname & " " & Forms!Individuals!LastName)
OldLastName.
There may not be a NickName and/or an OldLastName.
If there is a NickName, I want to use it rather than the
FirstName. If there is an OldLastName, I want to use it
rather than the LastName.
If Margaret (aka Peggy) Barton marries and changes her
last name to Smith, I want to see Peggy Smith. I was OK
until I added in the OldLastName bit. Thanks, IIf and Nz
confuse me. Here's what I had:
=IIf(IsNull(Forms!Individuals!NickName),Forms!Individuals!
FirstName & " " & Forms!Individuals!LastName,Forms!
Individuals!Nickname & " " & Forms!Individuals!LastName)