Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All
I have a Expression which is working fine :-
money(
fabs(
sum(Amount/$(Columndim89))/1000)
, $(vCurrencyFormatK))
How to add below filter into above expression :-
[Reporting Code]
='>=' & 0001 & '<=' & 011
Try this:
money(
fabs(
sum( {$<[Reporting Code] = {">=0001<=011"}>} Amount/$(Columndim89), $(vCurrencyFormatK))
Thanks.
Try this:
money(
fabs(
sum( {$<[Reporting Code] = {">=0001<=011"}>} Amount/$(Columndim89), $(vCurrencyFormatK))
Thanks.
Hi Tresesco
Thank you very much . it work.
Paul