Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Pie chart fixed

Hello,

I need to have a pie chart by región, but any time i do a selection in any region i need this chart not changing, It is that possible?

Thanks a lot!

1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

SUM({<Dimension1 = , Dimension2 =, Dimension3=,>}Sales)

Considering that you have Dimension1, Dimension2, Dimension3, are list boxes and you don't want your pie chart to be changed on selecting any selection from these list boxes.

Other solution is  SUM({1}Sales)

Already suggested by Chiranjeevi

View solution in original post

3 Replies
chiru_thota
Specialist
Specialist

Yes.It is possible using setanalysis.

ignore region from this chart

Ex : Sum ( {<Region=>} sales)

if you want that chart won't be responded to any selections then

Ex : Sum({1} Sales)

MK_QSL
MVP
MVP

SUM({<Dimension1 = , Dimension2 =, Dimension3=,>}Sales)

Considering that you have Dimension1, Dimension2, Dimension3, are list boxes and you don't want your pie chart to be changed on selecting any selection from these list boxes.

Other solution is  SUM({1}Sales)

Already suggested by Chiranjeevi

Anonymous
Not applicable
Author

Region dimension

Sales is expression

To show sales per region use the below set analysis syntax in sales expression in expression tab.

Sum({$<Year={$(=Max(Year)), $(=Max(Year)-1)}>}  Sales / $(vCurrency)).

Hope this helps