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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

set analysis with dimension

Hi,

I have a table with all the parts and as dimension the catergory of the parts and as expression the sum of the price of the parts.

Now I want to add an excel with expected sale sum per catergory.

I tried this:

sum( {$<CATERGORY= {"='${DIMENSION_FIELD_NAME}'"} >} EXPECTED_SALES)

1 Reply
Not applicable
Author

This works;

sum( if(CATERGORY= DIMENSION_FIELD_NAME, EXPECTED_SALES))

But it seems it's ignoring the selection so I get the total expected sales per catergory.

And when I add something after it like: AND SALES_WEEK = SELCTED_WEEK

It has no effect