I'm using CR 8.5SP3 and SQL server. We have several reports where the user selects starting and ending values for a field and then selects exclusion values for the same field. The report selection formula looks like:
So far so good. The reports work well. Now we have a situation where the the field must also be checked for a NULL. I've tried
but the rows NULL are not showing up.
Am I missing something or is this even possible?
James P. Cottingham
There's no place like 127.0.0.1.
There's no place like 127.0.0.1.
Code:
...
{PurchasedLogs.CurDeliveryPad} = {?Select Pad} and
{PurchasedLogs.CurDeliveryPad} <> {?Exclude Pad} and
...
So far so good. The reports work well. Now we have a situation where the the field must also be checked for a NULL. I've tried
Code:
...
(Len({PurchasedLogs.CurDeliveryPad}) = 0 or {PurchasedLogs.CurDeliveryPad} = {?Select Pad}) and
{PurchasedLogs.CurDeliveryPad} <> {?Exclude Pad} and
...
Am I missing something or is this even possible?
James P. Cottingham
There's no place like 127.0.0.1.
There's no place like 127.0.0.1.