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

Announcements
AWS Degraded - You may experience Community slowness, timeouts, or trouble accessing: LATEST HERE
cancel
Showing results for 
Search instead for 
Did you mean: 
danialier
Creator III
Creator III

Fix some text box selections

Hello

I have a QlikView with two tabs. First tab is a summary where I put the following info:

EMEA 10M$ (as a text box where the 10 number is the result of a formula)

AMS  15M$ (as a text box where the 15 number is the result of a formula)

APJ  8M$ (as a text box where the 8 number is the result of a formula)

In the second tab I have a list box with the three regions above and a graph with the revenue evolution.

What happens is that when I select whatever region in the second tab, the first tab gets updated and only showing the M$ for the region selected in the second tab. However what I want is to have the first tab ALWAYS showing the results of these three regions and then having the second tab in order to move from one region to another.

Please help.

thks,dani

1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

  =num(sum({1<[Product Line]={'Hardware'},Measure={'CI'},Category={'Lseries'},Month#={$(=max({1}Month#))},[Region detail]={'EMEA'}>}Units))


talk is cheap, supply exceeds demand

View solution in original post

5 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

put {1} in the expressions to ignore all selections. For example Sum(Amount) would become Sum({1}Amount). If you only want to ignore selections in one field, e.g. Year, then add {<FieldNameHere=>}: e.g. Sum({<Year=>}Amount.


talk is cheap, supply exceeds demand
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

Add the {1} Set expression into your formula on the first tab to ignore selections. For example:

sum({1}Revenue)

or

sum({1<Region={EMEA}>}Revenue)

-Rob

http://masterssummit.com

danialier
Creator III
Creator III
Author

Thanks Gysbert.

I endeed want ignore the selections in the second tab but in the first tab I want to keep three text boxes (one per region) with the overall revenues. For instance this is what I have for EMEA region in the first tab:

  =num(sum({<[Product Line]={'Hardware'},Measure={'CI'},Category={'Lseries'},Month#={$(=max(Month#))},[Region detail]={'EMEA'}>}Units)

How can I fix that for EMEA and afterwards "play" with the second tab without updating the results in the first tab ?

thanks,

dani

Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

  =num(sum({1<[Product Line]={'Hardware'},Measure={'CI'},Category={'Lseries'},Month#={$(=max({1}Month#))},[Region detail]={'EMEA'}>}Units))


talk is cheap, supply exceeds demand
danialier
Creator III
Creator III
Author

Great !!!!!!!!!! many thanks !!!!!!!!!!!