Power BI Interview Questions Part-1
Power BI Interview Questions Part-1
Interview Questions
Part-1
Master the
Questions, Crack
the Interview!
Power BI Basics
Use When:
You need static, row-level calculations.
You want to use the result in slicers, filters,
or visuals.
36. How do you create a Measure in
Power BI?
A measure is a DAX formula used for aggregated
calculations that dynamically respond to filters
and context.
Steps to Create a Measure:
Open Power BI Desktop.
Go to the Modeling tab → click New Measure.
Write your DAX formula.
Press Enter – the measure is added to your
table.
Use When:
You need aggregations like SUM, AVERAGE,
COUNT.
You want dynamic results that change with
slicers/filters.
37.Difference Between Calculated
Column and Measure:
Aggregate
Calculation Level Row-by-row (context-based)
Simple SUM(Sales
Adds up values aggregations [Amount])
SUM()
Used in row-
Returns a level filtering FILTER(Sales,
table that or when a Sales[Amount
FILTER() meets a function
condition requires a > 5000)
table
Used
Changes or applying when CALCULATE
modifies the filters (SUM(Sales
[Amount]),
CALCULATE() filter context dynamically Sales
of a within a [Category] =
calculation measure "Electronics")
45. What is the difference between
ALL() and ALLEXCEPT() in DAX?
ALL(Sales
Removes all Used when [Category]) –
removes
filters from a ignoring filters from filters
ALL()
column or table in a calculation "Category"
column
CALCULATE(SUM
Compares to the same (Sales[Amount]),
SAMEPERIODLASTYEAR() period last year SAMEPERIODLASTYEAR
(Sales[Date]))