Hi Access Experts,
I'm having a problem using Trim with StrConv functions, when I use this code Trim works.
but when I add StrConv, Trim stops working. Below is the code that doesn't work.
Any suggestions / answers?
Going to try to Trim first then then concatenate.
Thanks,
Rich
I'm having a problem using Trim with StrConv functions, when I use this code Trim works.
Code:
FullName: Trim([dbo_sponsor]![spn_chair_person])
Code:
FullName: Trim(StrConv("Dear " & [dbo_sponsor]![spn_chair_person],3) & ":")
Going to try to Trim first then then concatenate.
Thanks,
Rich