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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
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

1 Solution

Accepted Solutions
tresesco
MVP
MVP

Try this:

 

 

money(

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

Thanks.

View solution in original post

2 Replies
tresesco
MVP
MVP

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