I'm really struggling with this.
My import data is a list of categories. A, A1, B, C, C2, Cx for Example.
I have a reference table with additional data
A = True
A1 = False
B = True
etc
The problem is that if there is a space or carriage return in the import data I can't reference it from my table. So whilst the data says "B" it is in fact "Bcarriage return" and I cant reference it
I have this at present but I need to be able to remove carriage returns too.
Your help is always appreciated.
My import data is a list of categories. A, A1, B, C, C2, Cx for Example.
I have a reference table with additional data
A = True
A1 = False
B = True
etc
The problem is that if there is a space or carriage return in the import data I can't reference it from my table. So whilst the data says "B" it is in fact "Bcarriage return" and I cant reference it
I have this at present but I need to be able to remove carriage returns too.
Code:
IIf(Len([Field1])>0,(Trim(Replace([Field1]," ",""))))
Your help is always appreciated.