Link to home
Start Free TrialLog in
Avatar of markymarc69
markymarc69

asked on

Oracle & Crystal Reports & NVL Function

In crystal reports , the function NVL is not being recognized,
nvl ({STOCKWAREHOUSE.BEGINNINGCOUNT},0) + nvl({STOCKWAREHOUSE.QTYRECEIVED},0)  - nvl({STOCKWAREHOUSE.QTYISSUED},0) + nvl({STOCKWAREHOUSE.ADJUSTMENTS},0)
In crystal reports how would I solve the problems of Null value substition?

Help
Avatar of doronla
doronla

The use of {} is necessary ? try without...
Avatar of Mark Geerlings
If you can't get Crystal Reports to accept the nvl syntax you want, then create a view that has the nvl's and select from the view in Crystal Reports instead of from the base table(s).
Avatar of markymarc69

ASKER

I don't want to create a view. How would I achieve null value substition out in the formula editor of crystal reports for the following
nvl ({STOCKWAREHOUSE.BEGINNINGCOUNT},0)  +nvl({STOCKWAREHOUSE.QTYRECEIVED},0)  -
                nvl({STOCKWAREHOUSE.QTYISSUED},0) +
                nvl({STOCKWAREHOUSE.ADJUSTMENTS},0)
ASKER CERTIFIED SOLUTION
Avatar of mshaikh
mshaikh

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial