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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
VictorBoscaro
Contributor II
Contributor II

Exclude values if filter is selected

I have a bar plot that shows the final stock of each year. Before 2017 these number are fixed (the client gave us the value that should be used for those years) and from 2017 we calculate this numbers. 

What I need to do is hide the bar from 2014 to 2016 if I apply a filter in that sheet. How can I do it?

Thanks.

Labels (1)
1 Solution

Accepted Solutions
QFabian
MVP
MVP

Hi @VictorBoscaro , one option is create a INLINE table with a new flag to use in your expression or as a filter to select between :

Flag:
Load * INLINE [
Monthname, Flag

nov-2016, Type1
dic-2016, Type1
ene, 2017, Type2
etc.
];

 

 

 

Greetings!! Fabián Quezada (QFabian)
did it work for you? give like and mark the solution as accepted.

View solution in original post

1 Reply
QFabian
MVP
MVP

Hi @VictorBoscaro , one option is create a INLINE table with a new flag to use in your expression or as a filter to select between :

Flag:
Load * INLINE [
Monthname, Flag

nov-2016, Type1
dic-2016, Type1
ene, 2017, Type2
etc.
];

 

 

 

Greetings!! Fabián Quezada (QFabian)
did it work for you? give like and mark the solution as accepted.