Complete the code to create a calculated column that adds 10 to the SalesAmount.
NewColumn = Sales[SalesAmount] [1] 10
The plus sign (+) adds 10 to each SalesAmount value in the calculated column.
Complete the measure to calculate total sales by summing SalesAmount.
Total Sales = SUM(Sales[[1]])The SUM function adds all values in the SalesAmount column to get total sales.
Fix the error in this calculated column that tries to multiply Quantity by Price.
TotalValue = Sales[Quantity] [1] Sales[Price]The asterisk (*) multiplies Quantity by Price to get total value per row.
Fill both blanks to create a measure that calculates average sales per order.
Average Sales = [1](Sales[SalesAmount]) [2] COUNT(Sales[OrderID])
This measure sums all sales amounts and divides by the count of orders to find average sales per order.
Fill all three blanks to create a calculated column that flags high sales over 1000.
HighSalesFlag = IF(Sales[SalesAmount] [1] 1000, [2], [3])
This calculated column checks if SalesAmount is greater than 1000. If yes, it returns 1 (flag), else 0.