Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
1. I have a table where one field has a list of code (4 Number or Letters)
2. I only want to view the codes with all 4 digits being letter i.e. ABCD
3. Can I use an IF statement to change the codes <= 9999 to show as -
Excel If Statement would be;
=IF(A1 =< 9999, "-", A1)
I'm assuming that the range above would be the 'Column Name' in QV!
Straight forward but this doesn't work as an expression against the field!!
Am I missing something here?
Thank you in advance guys
Andrew Savage
Try with this
=IF(Num(A1) > 0, Null(), A1)
Andrew
Try this:
If(Len(KeepChar(A1, 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')) = Len(A1), A1, '-')
Regards
Jonathan