Hi
I have requirement for some particular report .The user wants to display blank incase of negative values coming up for the particular coulmn .how to display blank if there any negative values in that particular coulmn.
NOTE: Requirement is applicalble for particular column only not for entire query.
Thanks In Advance,
Hi Murali,
You can try to create a formula like:
If Value < 0 then 0...this would translate into something like:
(VAL < 0)0 + (VAL >0) VAL
You may need to edit the syntax of the formula in the formula editor.
Hope this helps...
Add a comment