In this example, I'm working with concatenated values.
CBNOPREF = "No Pref"
CBWORD = "Word"
CBEXCEL = "Excel"
So the if my data had each it would show (No Pref;Word;Excel)
That's fine until my data only has excel, and would show (;;Excel)
How would I had Nz to the following to eliminate the blank ";"?
CBNOPREF = "No Pref"
CBWORD = "Word"
CBEXCEL = "Excel"
So the if my data had each it would show (No Pref;Word;Excel)
That's fine until my data only has excel, and would show (;;Excel)
How would I had Nz to the following to eliminate the blank ";"?
Code:
DESIREDFORMAT: [CBNOPREF] & ";" & [CBWORD] & ";" & [CBEXCEL]