Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
jennifej
Contributor
Contributor

Bar Chart with Date Range

Hi - I am trying to set a specific date limit/range on a bar chart. Here's what I need: 

I need to show the number of closed cases by closed reason . I also have a field for closed date but the data goes back to 2006 - and I only need to pull closed cases and the closed reason by date for the current year - so from 1/1/2021 and forward. 

Any insight would be very much appreciated!

2 Solutions

Accepted Solutions
jwjackso
Specialist III
Specialist III

Try using an expression for the [Closed Date] dimension,

If([Closed Date] >= '1/1/2021',[Closed Date],Null())

and suppress nulls

View solution in original post

jennifej
Contributor
Contributor
Author

This worked - thanks so much!!

View solution in original post

2 Replies
jwjackso
Specialist III
Specialist III

Try using an expression for the [Closed Date] dimension,

If([Closed Date] >= '1/1/2021',[Closed Date],Null())

and suppress nulls

jennifej
Contributor
Contributor
Author

This worked - thanks so much!!