Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
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

Labels (1)
1 Solution

Accepted Solutions
swuehl
Champion III
Champion III

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
Champion III
Champion III

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!