G
Guest
I'm trying to concatenate the names into a string and what I'm trying to
achieve is this: txtfirstname + txtlastname, txtothername. But the problem is
that the comma shows up for those without the txtothername. So I tried with
this expression but there seems to be a problem:
[txtfirstname] & " " & [txtlastname] & IIf(IsNull[txtothername], " ", ", ")
& [txtothername]
Any idea what's wrong? Thanks.
ck
achieve is this: txtfirstname + txtlastname, txtothername. But the problem is
that the comma shows up for those without the txtothername. So I tried with
this expression but there seems to be a problem:
[txtfirstname] & " " & [txtlastname] & IIf(IsNull[txtothername], " ", ", ")
& [txtothername]
Any idea what's wrong? Thanks.
ck