W
WordHazIt
I am performing an if test on my simple database, if there is a suffix, print
the title+fname+lname+suffix If there is something in the suffix field, just
print FName+Lname+Suffix. The title field has data in both cases so I can
print Dear {Title} {Lname}:
I am using this code successfully, however, when there is a suffix it prints
a blank.
{ IF {MERGEFIELD Suffix} <> "" "{MERGEFIELD "Title" }" "{MERGEFIELD "FName"}
{MERGEFIELD "LName"} {MERGEFIELD "Suffix"}
Results:
Mr. Bob Jones (has no suffix)
Bob Attorney Esq. (has suffix - esq - therefore no Title)
Dear Mr. Jones:
Dear Mr. Attorney:
the title+fname+lname+suffix If there is something in the suffix field, just
print FName+Lname+Suffix. The title field has data in both cases so I can
print Dear {Title} {Lname}:
I am using this code successfully, however, when there is a suffix it prints
a blank.
{ IF {MERGEFIELD Suffix} <> "" "{MERGEFIELD "Title" }" "{MERGEFIELD "FName"}
{MERGEFIELD "LName"} {MERGEFIELD "Suffix"}
Results:
Mr. Bob Jones (has no suffix)
Bob Attorney Esq. (has suffix - esq - therefore no Title)
Dear Mr. Jones:
Dear Mr. Attorney: