Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Q&A with Qlik - Qlik Cloud Migration: Questions about migrating to Qlik Cloud? Catch the latest replay!
cancel
Showing results for 
Search instead for 
Did you mean: 
paulyeo11
Master
Master

How to add filter on Reporting Code 1 to 11 into my Expression ?

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

Labels (1)
1 Solution

Accepted Solutions
tresB
Champion III
Champion III

Try this:

 

 

money(

fabs(
sum( {$<[Reporting Code] = {">=0001<=011"}>} Amount/$(Columndim89), $(vCurrencyFormatK))

Thanks.

View solution in original post

2 Replies
tresB
Champion III
Champion III

Try this:

 

 

money(

fabs(
sum( {$<[Reporting Code] = {">=0001<=011"}>} Amount/$(Columndim89), $(vCurrencyFormatK))

Thanks.

paulyeo11
Master
Master
Author

Hi Tresesco

Thank you very much . it work.

Paul