Which option shows the best way to make a form accessible in a BI dashboard?
Think about users who rely on screen readers or keyboard only.
Labels linked to inputs and keyboard navigation ensure all users can interact with the form easily.
You want users to filter sales data by date range and product category in a BI report. Which form input types should you use?
Consider input types that reduce user errors and improve clarity.
Date pickers help users select valid dates easily, and dropdowns simplify category selection.
Given a sales table with columns Region and SalesAmount, which DAX measure correctly calculates total sales only for the selected region in a slicer?
Think about how to respect the slicer selection context.
Using VALUES(Sales[Region]) keeps the filter context from the slicer, summing only selected regions.
What error will this DAX measure cause?Average Sales = AVERAGE(Sales[SalesAmount
Average Sales = AVERAGE(Sales[SalesAmount])
Check the brackets and syntax carefully.
The measure is missing a closing bracket for the column reference, causing a syntax error.
Which statement best describes the purpose of Level of Detail (LOD) expressions in BI tools?
Think about how to calculate values ignoring or including certain filters.
LOD expressions let you fix the calculation level, like total sales per customer regardless of other filters.