Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have straight table. I would need to show the values which have 'Instructions' with blanks
I used the below expression.
=If(Instruction='',Instruction)
will it gives the values only with blanks?
Sorry please find attached.
please check...
Also, if you want ID having NULL instruction...use below expression in list box expression...
=IF(LEN(TRIM(Instruction))=0,ID)
Thanks. That's perfect.