A step-by-step guide to walk Creators through how to create calculated fields to suppress data below a threshold. Italicized texts are variable names.
For example, there are times when working with data you may want to suppress numbers – usually when working with demographic data that is easily identifiable.
- Determine the field you want to suppress
- Select ‘Create Calculated Field’. For these instructions, the field we will be suppressing is labeled “Completers”
- Enter the following formula
- Label the field ‘Less than 15’.
- IF SUM([Completers]) > 15 THEN SUM([Completers]) ELSE 0 END
- Create another calculated field. Label it “Suppression Symbol” and enter the following formula:
- CASE str([Less than 15]) when str(0) THEN ‘DS’ ELSE str([Less than 15]) END
Navigate to the sheet you want to show a suppressed value. Place the Suppression Symbol calculated field on the text card.