How To Stop Showing The Values With 0 In Tabelau?

Right-click the measure in the view

Select Filter

Uncheck 0

Click OK

Or create a calculated field: `IF SUM([Measure]) <> 0 THEN SUM([Measure]) END`

Replace the original measure with the calculated field

Or use a table calculation filter to hide zero values

Or apply a condition on the measure filter to exclude 0

If zeros come from nulls, convert nulls to blank with `ZN()` only when needed

Suggested for You

Trending Today