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?
✗ Incorrect
MAX returns the largest value found in the specified column or expression.
Which DAX formula finds the minimum value in the 'Price' column of the 'Products' table?
✗ Incorrect
MIN(Products[Price]) returns the smallest price value in the Products table.
Can MIN and MAX functions be used on text columns in Power BI?
✗ Incorrect
MIN and MAX work only with numeric and date/time data types, not text.
If you want to find the earliest date in a 'Date' column, which function do you use?
✗ Incorrect
MIN returns the earliest (smallest) date value in the column.
What will this DAX expression return? MAX(Sales[Quantity])
✗ Incorrect
MAX(Sales[Quantity]) returns the highest quantity value 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.