Step 1
Select Analysis > Create Calculated Field.
Step 2
In the Calculated Field dialog box, name the field "Outliers" and write a conditional formula that describes the marks you want to label. For example, the formula to label only regions where the sales are greater than $130,000 looks like this:
Â
|
IF SUM([Sales])>130000 |
THEN SUM([Sales]) |
ELSE null END |
|---|
|
If the region's sales are greater than $130,000... |
then label the marks with the Sales total... |
otherwise don't add a label at all. |
Â
The Calculated Field dialog box should look like this:

Step 3
Drag the new Outliers field onto the Label shelf, replacing Sales.

The final view includes only data labels for the regions where the sales total is greater than $130,000.

-
Note: You can show or hide the data labels for individual marks. To hide a specific data label, right-click the mark and select Mark Label > Never Show.
