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: 
Not applicable

Date Range in Set Analysis

Need to be able to expand the date range. How do you do a between clause. I would like to make it a 3 month sum

sum({ $<Forecast_CloseDate={[05-2011]}, Forecast_Probability ={'>70<100'}>} ForecastOppAmount)

Thanx

1 Solution

Accepted Solutions
Not applicable
Author

You would handle it just like you handled your Forecast_Probability range:

sum({ $<Forecast_CloseDate={'>05-2011<08-2011'}, 
Forecast_Probability ={'>70<100'}>} ForecastOppAmount)

Keep an eye on those date formats though. If your format doesn't match up correctly, the expression would probably return null.

View solution in original post

2 Replies
Not applicable
Author

You would handle it just like you handled your Forecast_Probability range:

sum({ $<Forecast_CloseDate={'>05-2011<08-2011'}, 
Forecast_Probability ={'>70<100'}>} ForecastOppAmount)

Keep an eye on those date formats though. If your format doesn't match up correctly, the expression would probably return null.

Not applicable
Author

totally worked. Thank you!