In Power BI, a Gauge visual shows progress toward a goal. Which of the following is NOT a required field for a basic Gauge visual?
Think about what a Gauge visual needs to show progress clearly.
The Legend field is not required for a Gauge visual because it does not segment data by categories. The Gauge mainly needs Value, Target, and Minimum (and optionally Maximum) to show progress.
You want to create a DAX measure to show total sales for the current month to use in a Gauge visual. Which measure correctly calculates this?
Total Sales Current Month = CALCULATE(SUM(Sales[Amount]), FILTER(ALL(Sales), MONTH(Sales[Date]) = MONTH(TODAY()) && YEAR(Sales[Date]) = YEAR(TODAY())))
Remember to filter dates from the first day of the current month up to today.
Option C correctly filters sales from the first day of the current month to today. Option C uses ALL(Sales) which removes filters but the FILTER condition is correct; however, using FILTER(Sales, ...) is more efficient here. Option C sums all sales without filtering. Option C filters only sales on today's date.
You want your Gauge visual's maximum value to adjust automatically to 10% above the highest sales value in the last year. Which DAX measure would you use for the Maximum value field?
Consider removing filters on Sales to get the full last year range.
Option B uses ALL(Sales) to ignore existing filters and correctly filters the last year up to today, then multiplies by 1.1 to add 10%. Option B misses the upper date limit. Option B uses MAX without date filtering. Option B filters Sales but does not remove existing filters, which might cause incorrect max.
You created a Gauge visual with these settings:
Value: Total Sales
Target: Sales Target
Minimum: 0
Maximum: 100000
The gauge always shows 0 progress even though sales exist. What is the most likely cause?
Check if the measure used for Value returns any number.
If the Value measure returns BLANK(), the Gauge shows zero progress. This often happens if the measure's filter context excludes all data. Option A would not cause zero progress but might affect the target line. Option A is incorrect because Minimum can be zero. Option A is false; Legend is not required.
Which of the following is the best practice when using a Gauge visual in a business report?
Think about how scale affects the clarity of progress shown.
Setting the maximum dynamically ensures the Gauge scale fits the data, making progress easier to interpret. Option D is better suited for bar or column charts. Option D can cause misleading visuals if the max is too large or small. Option D is incorrect because Gauges show single values, not trends.