Complete the calculation to create a parameter that controls the number of top products shown.
IF RANK(SUM([Sales])) <= [[1]] THEN [Product Name] ENDThe parameter named TopN is used to control how many top products to display based on sales rank.
Complete the parameter control formula to filter the top N customers by sales.
RANK(SUM([Sales])) <= [[1]]The TopN parameter is used to dynamically control the number of top customers shown.
Fix the error in the calculation to correctly use the parameter for top N filtering.
IF RANK(SUM([Profit])) <= [[1]] THEN [Category] ENDThe parameter name must exactly match TopN as defined in the workbook.
Fill both blanks to create a calculated field that filters top N regions by sales using the parameter.
IF RANK(SUM([[1]])) <= [[2]] THEN [Region] END
The calculation ranks regions by Sales and compares it to the TopN parameter to filter top regions.
Fill all three blanks to create a dynamic top N filter using parameter and rank on profit.
IF RANK(SUM([[1]])) <= [[2]] THEN [[3]] END
This calculation ranks by Profit, compares to the TopN parameter, and returns the Category field for filtering.