Complete the code to find the minimum sales amount from the Sales table.
MinSales = MIN(Sales[[1]])The MIN function returns the smallest value in the specified column. Here, we want the minimum sales amount, so we use Sales[Amount].
Complete the code to find the maximum order quantity from the Orders table.
MaxQuantity = MAX(Orders[[1]])The MAX function returns the largest value in the specified column. Here, we want the maximum quantity ordered, so we use Orders[Quantity].
Fix the error in the code to correctly calculate the minimum discount from the Discounts table.
MinDiscount = MIN(Discounts[1])In DAX, column names must be enclosed in square brackets inside the table reference. So the correct syntax is Discounts[DiscountAmount].
Fill both blanks to calculate the maximum and minimum sales amounts from the Sales table.
MaxSale = MAX(Sales[[1]]) MinSale = MIN(Sales[[2]])
Both MAX and MIN functions should use the sales amount column Amount to find the highest and lowest sales values.
Fill all three blanks to create measures for minimum price, maximum price, and average price from the Products table.
MinPrice = MIN(Products[[1]]) MaxPrice = MAX(Products[[2]]) AvgPrice = AVERAGE(Products[[3]])
All three measures should use the same numeric column Price to calculate minimum, maximum, and average prices.