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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

set analysis using fact as dimension or a variable

Hi,

    I have a following expression. Based on a button the variable var changes

if( var=DATE_FY, sum({<DATE_FY={'2013'}>}AMOUNT),sum({<DATE_CY={'2013'}>}AMOUNT))

I want to remove the if condition from the expression. So I create a Inline table Period with values as DATE_CY, DATE_FY  and trying to use them in my expression. By default Period is DATE_FY.

=sum({<$(Period)={'2013'}>}AMOUNT)

This doesn't seem to work.

Is there a way to make this work ?

Thanks

Lax

2 Replies
er_mohit
Master II
Master II

You have to write two expressions

=sum({<DATE_FY={'2013'}>}AMOUNT)

For this in conditional check on it and write =Period='DATE_FY' in Conditional is


and same for other expression sum({<DATE_CY={'2013'}>}AMOUNT)

and in conditional write =Period='DATE_CY'

hope it helps

when you select in list box it works




Not applicable
Author

Hi,

     I wish to use single expression only.

Thanks

Lax