DAX CALCULATE Function MCQS
Q. What does CALCULATE() do in DAX?
Solution:
CALCULATE() changes the filter context under which its first argument is evaluated.
Q. In CALCULATE(, , ), what is the first argument?
Solution:
The first argument to CALCULATE() is the base expression being evaluated; every argument after it is a filter.
Q. What is a measure in Power BI?
Solution:
A measure recalculates dynamically based on filter context and isn’t stored in the table.
Q. Which function counts the number of unique values in a column?
Solution:
DISTINCTCOUNT() returns the count of unique values in a column, as opposed to COUNT()’s total row count.
Q. What does CALCULATE([Total Sales], ALL(Sales[Region])) do?
Solution:
ALL() inside CALCULATE() removes filters from the specified column, overriding whatever region filter was previously applied.
Q. Why is CALCULATE() considered the most important DAX function?
Solution:
 CALCULATE()’s filter-context manipulation underlies most advanced DAX techniques, including time intelligence functions.
Q. A CALCULATE()-filtered measure returns the same result no matter what filter is passed. What's the likely cause?
Solution:
If the filter text doesn’t exactly match the underlying data values, CALCULATE() effectively applies no meaningful filter.
Get Question Bank
Strengthen Your Practice with our comprehensive question bank.