This is what I have
IT: ([ITOwn1] & ", " & [itown2] & ", " & [itown3])
Unfortunately if a field is null you end up with a comma or two ,,Joe Smith
I'm hoping to write something like
IT:=iif(isnull(([itown1]),"",([itown1]&", ")(isnull(([itown2]),"",([itown2]&", ") etc
In other words if...