Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Hidding Multiple Values

Some of my data has two values displayed when I filter on a month-by-month basis. I'm tracking both Actuals and Forecasts, thus for months that have already occurred, Actuals and Forecasts are displayed simultaneously. How can I hide Forecasts if and only if values are present within Actuals?data error.png

1 Solution

Accepted Solutions
swuehl
MVP
MVP

You want to do this in the chart or the script? How do your expressions look like?

Mayb it's enough to filter Forecast expression like

=if("ActualExpression">0, YourForecastExpression)

View solution in original post

2 Replies
swuehl
MVP
MVP

You want to do this in the chart or the script? How do your expressions look like?

Mayb it's enough to filter Forecast expression like

=if("ActualExpression">0, YourForecastExpression)

Not applicable
Author

PERFECT!