Hi all
I have memo columns named column A and Column B.
I'm trying to pickup the notes from column A and column B into column C seperated by "," .
So far my query seams to work accept it does not check if column B is Null or not.
Lets supose
A B
John Doe
James
Using my query I will get this result
John,Doe
James,
How can I modify it to check if column B is Null or not because I do not want the "," as shown on the second line.
This is what I have so far.
Note: IIf(IsNull([RecheckNote]) Or [RecheckNote] Like "",[CTNote],[RecheckNote] & "," & [CTnote])
Thanks in advanced