Complete the code to use the parameter 'SalesTarget' in the calculated field.
IF [Sales] > [1] THEN 'Above Target' ELSE 'Below Target' END
The parameter 'SalesTarget' is referenced inside square brackets to use its value in the calculation.
Complete the code to create a calculated field that multiplies Sales by the parameter 'Multiplier'.
[Sales] * [1]The parameter 'Multiplier' is used inside brackets to multiply the Sales value.
Fix the error in the calculated field that compares Sales to the parameter 'TargetValue'.
IF [Sales] > [1] THEN 'Goal Met' ELSE 'Goal Not Met' END
The parameter must be referenced inside square brackets to be recognized correctly.
Fill both blanks to create a calculated field that returns 'High' if Sales exceed the parameter 'Threshold', otherwise 'Low'.
IF [Sales] [1] [2] THEN 'High' ELSE 'Low' END
The comparison operator '>' is used to check if Sales are greater than the parameter 'Threshold' referenced inside brackets.
Fill all three blanks to create a calculated field that adjusts Sales by a parameter 'Adjustment' only if Sales are less than the parameter 'Limit'. Otherwise, return Sales unchanged.
IF [Sales] [1] [2] THEN [Sales] * [3] ELSE [Sales] END
The condition checks if Sales are less than the parameter 'Limit'. If true, Sales are multiplied by the parameter 'Adjustment'. Both parameters are referenced inside brackets.