Complete the code to create a text table showing sales by region.
SUM([1])The SUM(Sales) aggregation sums the sales values, which is typical for a text table showing sales by region.
Complete the code to display the average profit per category in the text table.
AVG([1])The AVG(Profit) calculates the average profit per category, which is useful for analyzing profitability in a text table.
Fix the error in the calculation to show total quantity sold.
SUM([1])The SUM(Quantity) correctly sums the total number of items sold, which is the intended calculation.
Fill both blanks to create a calculated field that shows profit ratio as a percentage.
SUM([1]) / SUM([2]) * 100
The formula SUM(Profit) / SUM(Sales) * 100 calculates profit as a percentage of sales, which is the profit ratio.
Fill all three blanks to create a calculated field that shows average discount per quantity sold.
SUM([1]) / SUM([2]) * [3]
This formula SUM(Discount) / SUM(Quantity) * 100 calculates the average discount per unit sold as a percentage.