I am using sub reports and passing info using Shared Currency Variables. When I do a grand total I want to check to see if any are null. I am using:
shared CurrencyVar x;
shared CurrencyVar y;
if isnull (x) then
y
else if isnull then
x
else
x-y
It won't let me check the variable for a null value. It wants a field. Is there any way around this?
shared CurrencyVar x;
shared CurrencyVar y;
if isnull (x) then
y
else if isnull then
x
else
x-y
It won't let me check the variable for a null value. It wants a field. Is there any way around this?