Hello,
I have some mailing lables which currently use the code:
=Trim([ClientTitle] & " " & [ClientSurname])
We now would like to add into this line a partners name, if there is one, which may have a different surname. There are additional fields: ClientPartnerTitle & ClientPartner Surname.
If for example we had Mr Briggs (ClientTitle & ClientSurname) and Miss Howes (ClientPartnerTitle & ClientPartner Surname) I would like to show on the mailing label 'Mr Briggs & Miss Howes'.
I could have:
=Trim([ClientTitle] & " " & [ClientSurname])& "&" & ([ClientPartnerTitle] & " " & [ClientPartnerSurname])
The problem I have is that if there areno partner details, I do not want an "&" appearing.
Your suggestions would be appreciated.
Thank you
I have some mailing lables which currently use the code:
=Trim([ClientTitle] & " " & [ClientSurname])
We now would like to add into this line a partners name, if there is one, which may have a different surname. There are additional fields: ClientPartnerTitle & ClientPartner Surname.
If for example we had Mr Briggs (ClientTitle & ClientSurname) and Miss Howes (ClientPartnerTitle & ClientPartner Surname) I would like to show on the mailing label 'Mr Briggs & Miss Howes'.
I could have:
=Trim([ClientTitle] & " " & [ClientSurname])& "&" & ([ClientPartnerTitle] & " " & [ClientPartnerSurname])
The problem I have is that if there areno partner details, I do not want an "&" appearing.
Your suggestions would be appreciated.
Thank you