0
0
Power BIbi_tool~5 mins

MIN and MAX in Power BI - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the MIN function do in Power BI?
The MIN function returns the smallest number from a column or expression. It helps find the lowest value in your data.
Click to reveal answer
beginner
What is the purpose of the MAX function in Power BI?
The MAX function returns the largest number from a column or expression. It helps find the highest value in your data.
Click to reveal answer
beginner
Write a simple DAX formula to find the minimum sales amount from a Sales table.
MIN_Sales = MIN(Sales[Amount])
Click to reveal answer
beginner
Write a simple DAX formula to find the maximum sales amount from a Sales table.
MAX_Sales = MAX(Sales[Amount])
Click to reveal answer
intermediate
Can MIN and MAX functions be used with dates in Power BI?
Yes, MIN and MAX can find the earliest and latest dates in a date column, helping you understand time ranges in your data.
Click to reveal answer
What does the MAX function return in Power BI?
AThe smallest value in a column
BThe largest value in a column
CThe average value in a column
DThe total sum of a column
Which DAX formula finds the minimum value in the 'Price' column of the 'Products' table?
ASUM(Products[Price])
BMAX(Products[Price])
CAVERAGE(Products[Price])
DMIN(Products[Price])
Can MIN and MAX functions be used on text columns in Power BI?
AYes, they find the shortest and longest text
BNo, they only work with numbers
CNo, they only work with numbers and dates
DYes, they find alphabetical first and last
If you want to find the earliest date in a 'Date' column, which function do you use?
AMIN(Date[Date])
BMAX(Date[Date])
CSUM(Date[Date])
DAVERAGE(Date[Date])
What will this DAX expression return? MAX(Sales[Quantity])
AThe largest quantity sold
BThe smallest quantity sold
CThe total quantity sold
DThe average quantity sold
Explain how MIN and MAX functions help analyze data in Power BI.
Think about how you find the lowest or highest number in a list.
You got /4 concepts.
    Write a DAX formula to find the maximum date in a 'Orders' table and explain what it shows.
    Use MAX on a date column to find the newest date.
    You got /3 concepts.