VISUALIZATION & DASHBOARD DESIGN

Qlik Sense Gauge Charts: Performance Context at a Glance

Autor

Qlik Doktor

September 28, 2025 · 10 min read

Last updated: September 2025 | Reading time: 10 minutes | Level: Beginner

Your dashboard shows «Budget Utilization: 73%». Is that good or critical?

Without context, you can’t answer that question. With a Gauge Chart, you instantly see: Green, Yellow, or Red.

What will you learn about Qlik Sense Gauge Charts and their performance context?

  • Create Gauge Charts in 10 minutes – with concrete click-by-click paths through the Qlik menus
  • Define performance ranges that reflect real business thresholds
  • Configure the most important settings in the Properties panel correctly
  • When Gauge Charts are the right choice (and when they’re not)

How do I create my first Gauge Chart in Qlik Sense?

We’ll build a budget monitoring gauge together. You can follow every step click by click. For a complete overview of all options available, the Qlik official gauge chart documentation is a useful reference to keep open alongside this tutorial.

What is the scenario for Qlik Sense Gauge Charts?

Metric: Budget utilization as a percentage
Business logic:

  • 70-85% is optimal (Green)
  • Below 70% or above 85% requires attention (Yellow/Red)

How do I add a chart in Qlik Sense Gauge Charts?

Where: Your sheet in Edit Mode
Action:

  1. Left sidebar → «Charts»
  2. Scroll to «Gauge»
  3. Drag it onto your sheet

Result: Empty Gauge Chart with an «Add measure» button

How do I define the measure in Qlik Sense Gauge Charts?

For complex ratio expressions, review the guide to expression optimization for chart calculations — it covers aggregation patterns and common pitfalls before you write the formula. If your gauge value uses set identifiers to isolate a specific period or entity, the set analysis for chart expressions tutorial explains each operator in detail.

Where: Click «Add measure» or open Properties → Data → Measures

Enter the expression:

Sum([Budget_Spent]) / Sum([Budget_Total])

What this formula does:

  • Sum([Budget_Spent]) adds up all amounts spent
  • Sum([Budget_Total]) adds up the total budget
  • Division yields the percentage as a decimal number (e.g. 0.73 for 73%)

Set the label:

Budget Utilization

Set the Number Format:

  1. Below the expression → «Number formatting»
  2. Select «Number» → Format: 12%
  3. Set Decimals to 0

Result: Gauge now shows a number with a % sign

How do I define Min and Max in Qlik Sense Gauge Charts?

Where: Properties → Appearance → Presentation

Settings:

Gauge range:
  Min: 0
  Max: 1

Why 0 to 1?

  • Your expression returns decimal numbers (0.73 for 73%)
  • Qlik calculates internally with 0.73
  • The Number Format displays it as 73%
  • Therefore: Max = 1 (equals 100%)

Common mistake: Setting Max to 100 causes the gauge to show only 0.73% instead of 73%

How do you configure the performance ranges in Qlik Sense Gauge Charts?

Where: Properties → Appearance → Presentation → Segments

Number of segments: 5

Now define each range individually:

Segment 1: Critically low

Limit min: 0
Limit max: 0.6
Color: RGB(244, 67, 54) [Red]

Segment 2: Too low

Limit min: 0.6
Limit max: 0.7
Color: RGB(255, 193, 7) [Yellow]

Segment 3: Optimal

Limit min: 0.7
Limit max: 0.85
Color: RGB(76, 175, 80) [Green]

Segment 4: Too high

Limit min: 0.85
Limit max: 0.95
Color: RGB(255, 193, 7) [Yellow]

Segment 5: Critically high

Limit min: 0.95
Limit max: 1
Color: RGB(244, 67, 54) [Red]

Result: Gauge now shows colored ranges. The needle points to 73% in the green zone.

How do I edit the title and styling in Qlik Sense Gauge Charts?

Where: Properties → Appearance → General

Title:

Q4 Budget Utilization

Subtitle (optional):

As of: September 2025

Additional style options:

  • Show labels: On (displays 0%, 50%, 100% at the edge)
  • Show segment labels: Off (otherwise too cluttered)
  • Show value: On (displays 73% in the center)

Done! You now have a fully functional Gauge Chart.


How do I understand the key settings in Qlik Sense Gauge Charts?

The gauge chart properties reference documents every setting in the properties panel — useful when you need to confirm a specific option name or available values.

What is the Gauge Range (Min/Max) setting in Qlik Sense?

Where: Properties → Appearance → Presentation → Gauge range

The basic rule: Your Min/Max values must match your expression.

Example 1: Percentage as decimal

Expression: Sum(Sales) / Sum(Target)
Returns: 0.87 (for 87%)

Setting:
  Min: 0
  Max: 1

Number Format: 0% (then displays 87%)

Example 2: Percentage as number

Expression: (Sum(Sales) / Sum(Target)) * 100
Returns: 87

Setting:
  Min: 0
  Max: 100

Number Format: # (then displays 87)

Example 3: Rating scale

Expression: Avg([Customer_Rating])
Returns: 4.2

Setting:
  Min: 1
  Max: 5

Number Format: 0.0 (then displays 4.2)

Example 4: Over 100% possible

Expression: Sum(Actual) / Sum(Target)
Can be: 1.15 (for 115%)

Setting:
  Min: 0
  Max: 1.5

Number Format: 0% (then displays 115%)

Pro tip: If your gauge needle only reaches halfway, your Max value is incorrect.

What are Segments in Qlik Sense Gauge Charts?

Where: Properties → Appearance → Presentation → Segments

How many ranges do you need?

3 ranges (Simple):

Segment 1: 0-0.6   = Red
Segment 2: 0.6-0.9 = Yellow
Segment 3: 0.9-1.0 = Green

When to use: Standard performance monitoring

5 ranges (Differentiated):

Segment 1: 0-0.4     = Dark Red (Critical)
Segment 2: 0.4-0.7   = Red (Poor)
Segment 3: 0.7-0.85  = Yellow (Acceptable)
Segment 4: 0.85-0.95 = Light Green (Good)
Segment 5: 0.95-1.0  = Green (Excellent)

When to use: Detailed performance evaluation with multiple action levels

7+ ranges (Too many):

Not recommended - too granular, no longer readable at a glance

Color choices:

Standard palette (red-yellow-green):

Critical: RGB(244, 67, 54)   - Red
Warning:  RGB(255, 193, 7)   - Yellow
Good:     RGB(76, 175, 80)   - Green

Extended palette (5 levels):

Critical:    RGB(183, 28, 28)   - Dark Red
Poor:        RGB(244, 67, 54)   - Red
Acceptable:  RGB(255, 193, 7)   - Yellow
Good:        RGB(139, 195, 74)  - Light Green
Excellent:   RGB(76, 175, 80)   - Green

Color-blind friendly alternative:

Critical:  RGB(215, 48, 39)   - Red (distinguishable)
Warning:   RGB(252, 141, 89)  - Orange (instead of Yellow)
Good:      RGB(69, 117, 180)  - Blue (instead of Green)

What are the Presentation Options in Qlik Sense Gauge Charts?

Where: Properties → Appearance → Presentation

Show labels: (On/Off)

  • On: Displays values at the gauge edge (0%, 50%, 100%)
  • Recommendation: On with few gauges, Off with many (too cluttered)

Show value: (On/Off)

  • On: Displays the current value centrally (e.g. 73%)
  • Recommendation: Always On – the value is important

Show segment labels: (On/Off)

  • On: Displays labels like «Critical», «Good» directly on the gauge
  • Recommendation: Off – quickly becomes cluttered

Gauge style:

Arc:    Standard semicircle (recommended)
Full:   Full circle (takes more space)

Arc size: (Arc only)

120-180 degrees: Recommended
180 degrees: Standard semicircle

What are real business scenarios for Qlik Sense Gauge Charts?

How do I track sales target achievement in Scenario 1?

Business question: Are we hitting our sales target?

Expression:

Sum([Sales_Actual]) / Sum([Sales_Target])

Gauge setup:

Min: 0
Max: 1.2

Segment 1: 0-0.7     → RGB(244, 67, 54)   [Red - Critical]
Segment 2: 0.7-0.9   → RGB(255, 152, 0)   [Orange - Poor]
Segment 3: 0.9-1.0   → RGB(255, 193, 7)   [Yellow - Close]
Segment 4: 1.0-1.2   → RGB(76, 175, 80)   [Green - Target achieved]

Number Format: 0%
Title: "Sales Target Achievement"

Why Max = 1.2?

  • Allows you to see over-performance (120% of target)
  • Shows whether the team is performing exceptionally well

Why only green from 100%?

  • Below 100% = target missed
  • Performance is only acceptable when the target is reached

How is the Customer Satisfaction Score displayed in a Qlik Sense Gauge Chart?

Business question: How satisfied are our customers?

Expression:

Avg([NPS_Score])

Gauge setup:

Min: 1
Max: 10

Segment 1: 1-4     → RGB(244, 67, 54)   [Red - Detractors]
Segment 2: 4-7     → RGB(255, 193, 7)   [Yellow - Passives]
Segment 3: 7-10    → RGB(76, 175, 80)   [Green - Promoters]

Number Format: 0.0
Title: "Customer NPS Score"

Business logic:

  • 1-4: Detractors (dissatisfied, would not recommend)
  • 4-7: Passives (neutral, no enthusiasm)
  • 7-10: Promoters (enthusiastic, actively recommend)

Why these ranges?

  • Based on standard NPS methodology
  • Industry-standard, comparable with competitors

How does page load time affect website performance in Qlik Sense Gauge Charts?

Business question: Is our website fast enough?

Expression:

Avg([Page_Load_Time_Seconds])

Gauge setup:

Min: 0
Max: 5

Segment 1: 0-1     → RGB(76, 175, 80)   [Green - Excellent]
Segment 2: 1-2     → RGB(139, 195, 74)  [Light Green - Good]
Segment 3: 2-3     → RGB(255, 193, 7)   [Yellow - Acceptable]
Segment 4: 3-4     → RGB(255, 152, 0)   [Orange - Poor]
Segment 5: 4-5     → RGB(244, 67, 54)   [Red - Critical]

Number Format: 0.0"s"
Title: "Avg. Page Load Time"

Why these ranges?

  • 0-1s: Excellent (Google recommends under 1s)
  • 1-2s: Good (acceptable for most users)
  • 2-3s: Acceptable (improvement recommended)
  • 3s+: Poor/Critical (users bounce)

Special note: Here, LOWER is better!

  • Green at the start, Red at the end
  • Inverse logic compared to standard performance gauges

How do I fix common problems with Qlik Sense Gauge Charts?

Why does my Qlik Sense gauge only show a small portion?

Symptom: The needle only reaches about 20% of the gauge arc

Cause: Your Max value is incorrect

Diagnosis:

  1. Open Properties → Data → Measures
  2. Click on your expression
  3. Temporarily set Number Format to «Auto»
  4. Check the raw value

Example:

Displayed: 73%
Raw value: 0.73

Problem: Max is set to 100
Fix: Set Max to 1

Fix:

Properties → Appearance → Presentation → Gauge range
Max: 1 (instead of 100)

Why do all values land in the green range in Qlik Sense Gauge Charts?

Symptom: No matter what data is selected, the gauge is always green

Cause: Your ranges are not calibrated against real data

Solution: Analyze data before defining ranges

Create a temporary table chart with:

Dimension: [Year-Month] or [Region]
Measures:
  - Min([Your_Metric])
  - Avg([Your_Metric])
  - Max([Your_Metric])
  - Fractile([Your_Metric], 0.25)
  - Fractile([Your_Metric], 0.75)

Example result:

Min: 0.45
25th Percentile: 0.62
Average: 0.73
75th Percentile: 0.84
Max: 0.95

Ranges based on data:

Segment 1: 0-0.62    [Bottom quartile - Red]
Segment 2: 0.62-0.73 [Below average - Yellow]
Segment 3: 0.73-0.84 [Above average - Light Green]
Segment 4: 0.84-1.0  [Top quartile - Green]

Or: Ranges based on target:

If Target = 0.80:
  Excellent: 0.96-1.0  (120%+ of target)
  Good:      0.80-0.96 (100-120% of target)
  Warning:   0.64-0.80 (80-100% of target)
  Critical:  0-0.64    (below 80% of target)

Why does the Number Format show wrong values in Qlik Sense Gauge Charts?

Symptom: Gauge displays 0.73 instead of 73%

Solution:

Properties → Data → Measures → Your Expression
Number formatting: Custom
Format pattern: 0%

Other common formats:

Percentage with decimal place:

0.0%  → displays 73.5%

Whole numbers:

#,##0  → displays 1,234

Decimal numbers:

0.00  → displays 4.25

With unit:

0.0"s"     → displays 2.3s
#,##0"ms"  → displays 245ms

Currency:

$#,##0     → displays $1,234
$#,##0.00  → displays $1,234.56

How can you better distinguish colors in Qlik Sense Gauge Charts?

Symptom: Yellow and light green look too similar

Solution: Use stronger contrasts

Instead of:

RGB(255, 193, 7)   - Yellow
RGB(139, 195, 74)  - Light Green

Better:

RGB(255, 193, 7)   - Yellow
RGB(76, 175, 80)   - Green (darker green)

Or: 3-color system instead of 5:

Segment 1: 0-0.6   → RGB(244, 67, 54)  [Red]
Segment 2: 0.6-0.9 → RGB(255, 193, 7)  [Yellow]
Segment 3: 0.9-1.0 → RGB(76, 175, 80)  [Green]

When should Gauge Charts in Qlik Sense NOT be used?

How can I analyze trends over time in Qlik Sense Gauge Charts?

Why it doesn’t work:

You want: To see sales development over 12 months
Gauge shows: Only the current value (e.g. September)
Problem: You can't tell whether performance is improving or declining

Right alternative: A combo chart for richer analysis can combine a bar series showing current values with a line tracking the trend — giving both the point-in-time reading and direction in one view.

How do you compare multiple metrics in Qlik Sense Gauge Charts?

Why it doesn’t work:

You want: To compare 10 regions
With gauges: 10 individual gauges → overwhelming
Problem: Comparison is tedious, no ranking visible

Right alternative: A sorted bar chart for comparing multiple metrics shows ranking at a glance without the visual clutter of ten separate gauge needles.

How do you use absolute numbers without a range in Qlik Sense Gauge Charts?

Why it doesn’t work:

You want: To show "We have $2.3M in revenue"
With gauge: Requires Min/Max → what is Max for revenue?
Problem: Revenue has no natural upper limit

Right alternative: KPI objects for key metrics present the number prominently with trend indicators and conditional colors — no range required.

How can I perform a detailed analysis in Qlik Sense Gauge Charts?

Why it doesn’t work:

You want: To break down revenue by product, region, month
With gauge: Only one aggregated value visible
Problem: No drill-down capability

Right alternative: Table with drill-down

How do you use Gauge Charts in Qlik Sense for performance context?

  1. Single KPIs with a clear «good/bad» threshold
    • Budget utilization
    • Target achievement
    • Quality scores
  2. When thresholds matter
    • «Below 80% is critical»
    • «Above 95% is excellent»
  3. When quick visual assessment is needed
    • Executive dashboards
    • Operations monitoring
    • Alert dashboards

What are the best practices for Qlik Sense Gauge Charts?

How many gauges are allowed per dashboard in Qlik Sense?

Why:

  • More than 6 = information overload
  • Users can no longer take them all in simultaneously

Layout recommendation:

Executive Dashboard:
  - 4 Primary KPIs (2x2 Grid)
  - Large gauges (300x300 px)

Operations Dashboard:
  - 6 Process KPIs (2x3 Grid)
  - Medium gauges (200x200 px)

How do I ensure consistent color logic across the dashboard?

Good:

All gauges on the dashboard:
  Green = target achieved
  Yellow = attention needed
  Red = critical

Bad:

Gauge 1: Green = good
Gauge 2: Green = bad (because "high error rate")
Gauge 3: Blue = good

Exception: Inverse metrics

For load time or error rate where LOW = GOOD:
  Reverse the ranges but keep the colors consistent
  0-1s = Green (low = good)
  4-5s = Red (high = bad)

How do I write meaningful titles for Qlik Sense Gauge Charts?

Bad:

Title: "Metric 1"

Good:

Title: "Budget Utilization Q4"
Subtitle: "Target: 75-80%"

Even better:

Title: "Budget Utilization Q4"
Subtitle: "As of: $(=Date(Today(), 'MM/DD/YYYY'))"

How do I document ranges in Rule 4?

When not self-evident, explain the ranges:

Option 1: In the Subtitle

Title: "Customer Satisfaction"
Subtitle: "Target: >7.0 (NPS Standard)"

Option 2: In a separate text object

Next to the gauge:
"Performance Ranges:
 8.5-10: Excellent
 7.0-8.4: Good
 <7.0: Action needed"

What is a Gauge Chart in Qlik Sense and how is it used?

What is the basic setup for Qlik Sense Gauge Charts?

1. Add chart: Sidebar → Gauge
2. Expression: Sum([Actual]) / Sum([Target])
3. Number Format: 0%
4. Min: 0, Max: 1
5. Segments: 3-5 ranges with Red-Yellow-Green

What are the most important settings for Qlik Sense Gauge Charts?

Properties → Appearance → Presentation:
  - Gauge range: Min/Max matching the expression
  - Segments: Define 3-5 ranges
  - Show value: On
  - Show labels: On (with few gauges)

What are the standard formats in Qlik Sense Gauge Charts?

Percentage (decimal): 0%
Percentage (with decimal): 0.0%
Whole number: #,##0
Decimal: 0.00
With unit: 0.0"s"

What are the standard colors in Qlik Sense Gauge Charts?

Red:         RGB(244, 67, 54)
Orange:      RGB(255, 152, 0)
Yellow:      RGB(255, 193, 7)
Light Green: RGB(139, 195, 74)
Green:       RGB(76, 175, 80)

What are common expressions in Qlik Sense Gauge Charts?

Target achievement:
Sum([Actual]) / Sum([Target])

Average:
Avg([Metric])

Growth vs. prior year:
(Sum([This_Year]) / Sum([Last_Year])) - 1

Budget utilization:
Sum([Spent]) / Sum([Budget])

Tags: qlik-sense, gauge-charts, performance-monitoring, kpi-visualization, dashboard-design