Bird
0
0

You want to create a Gauge visual that dynamically adjusts its Maximum value to 10% above the highest sales value in your dataset. Which DAX measure would correctly set the Maximum?

hard📝 Scenario Q8 of 15
Power BI - Basic Visualizations
You want to create a Gauge visual that dynamically adjusts its Maximum value to 10% above the highest sales value in your dataset. Which DAX measure would correctly set the Maximum?
AMaxSales = MIN(Sales[Amount]) * 1.1
BMaxSales = SUM(Sales[Amount]) / 10
CMaxSales = AVERAGE(Sales[Amount]) + 10
DMaxSales = MAX(Sales[Amount]) * 1.1
Step-by-Step Solution
Solution:
  1. Step 1: Identify highest sales value

    Use MAX function to get the highest sales amount.
  2. Step 2: Increase by 10%

    Multiply MAX by 1.1 to add 10% buffer for Maximum scale.
  3. Final Answer:

    MaxSales = MAX(Sales[Amount]) * 1.1 -> Option D
  4. Quick Check:

    Dynamic Maximum = MAX * 1.1 [OK]
Quick Trick: Use MAX and multiply by 1.1 for dynamic Maximum [OK]
Common Mistakes:
  • Using MIN instead of MAX
  • Using AVERAGE or SUM incorrectly

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Power BI Quizzes