Folks
To avoid problems with functions like Replace, InStr or ConcatRelated, I'm accustomed to using IIf:
IIf([MyField] Is Not Null, Replace([MyField],"A","B"),"")
This seems like a bit of a faff, so I was wondering if there was a better way. I've just discovered 'Nz'. Is that the best option?
Thanks
Remster