I have the following in a text box on a report and need help finishing it up.
="Dear" & " " & Trim([Account List.First Name]) & IIf([Account List.Account Type]="JTIC" Or [Account List.Account Type]="JTWROS" Or [Account List.Account Type]="JTENT",Trim([Account List.Joint Owner/Child First Name]),"") & ","
I want it to look like this:
Dear Joe,
or
Dear Joe & Jen
I can't figure out how to add in the " & " infront of the second persons name.