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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Gauge Chart - Set Flexible Max Value

Hi, when I create a Gauge Chart, I don't want to hardcode the Max value (Presentation tab).

Example:

if sum(sales) = 105, then Max Value=1000

if sum(sales)= 2090, then Max Value=10,000

Can guide me how to use the expression?

Thanks you

Benjamin See

1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

Go to Properties of your chart

presentation tab

Guage Settings

Under Max write down below expression

IF(Sum(Sales) = 105, 1000, If(Sum(Sales) = 2090, 10000))

UPDATE:

Another way is to set max at 10% higher

Please check enclosed file.

View solution in original post

2 Replies
MK_QSL
MVP
MVP

Go to Properties of your chart

presentation tab

Guage Settings

Under Max write down below expression

IF(Sum(Sales) = 105, 1000, If(Sum(Sales) = 2090, 10000))

UPDATE:

Another way is to set max at 10% higher

Please check enclosed file.

Not applicable
Author

Thanks. Test ok.