Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I have a QVD and in one of the field called "Store" null values are there. I need to exclude those NULL records.
I have tried with below conditions but i cannot able to filter those values. Can anyone help me on this?
Where Store<>' ';
Where Store <> 'NULL ';
Try like:
Where Len(Trim(Store))>0;
You can try this too
Where Store;
Have you tried?
Where Store <> null();
Best regards,
D.A. MB
Use not IsNull(Store)
or
Store <> Null()
Thank you all for quick response.
Srishar, Does Tresesco suggestion is working or not?
His responses always works so i kept his response as helpful and used migual response.