Skip to main content
Announcements
NEW: Seamless Public Data Sharing with Qlik's New Anonymous Access Capability: TELL ME MORE!
cancel
Showing results for 
Search instead for 
Did you mean: 
Arild
Contributor
Contributor

Gauge with fixed value

Hello,

I have a gauge that works fine, and I can select a country and it changes the value to match. 
However I would like to have 4 gauge that shows fixed calculations based on country. 

The formula I have today is: 

sum(Aggr(Sum(arr)*Num#(Liability),counterparty_name))

I have a field named: legal_entity (with 4 different options - NO, US, UK, DK)

How can I get my Gauge to show 4 different selection independently on the other selections in the model?

 

Thanks:-)

Arild

Labels (3)
1 Solution

Accepted Solutions
vinieme12
Champion III
Champion III

Example

sum(Aggr(Sum({<legal_entity={'UK'}>}arr*liability),counterparty_name))

 

Read more on set analysis here

https://www.analyticsvidhya.com/blog/2014/01/set-analysis-qlikview/

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.

View solution in original post

3 Replies
Bill_Britt
Former Employee
Former Employee

HI,

I would look at using set analysis, but normally the Gauge is dimenionless and it based on selection status. 

 

Bill

Bill - Principal Technical Support Engineer at Qlik
To help users find verified answers, please don't forget to use the "Accept as Solution" button on any posts that helped you resolve your problem or question.
vinieme12
Champion III
Champion III

Example

sum(Aggr(Sum({<legal_entity={'UK'}>}arr*liability),counterparty_name))

 

Read more on set analysis here

https://www.analyticsvidhya.com/blog/2014/01/set-analysis-qlikview/

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
Arild
Contributor
Contributor
Author

Thanks:-)
Perfect