Hello everyone,
What is the proper syntax in the Generic Inquiry builder to evaluate if the value of a field is not null?
For example if I want to evalute if Inventory Item Item ID is not null...
The following does not evalute correctly:
pInventoryItem.InventoryID]<>Null
The following does evaluate correctly, but looking for a more direct way:
=IIF(Isnull(nInventoryItem.InventoryID],0)<>0,...)
Thanks in advance!
Luke