- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
set analysis problem
Hi,
Please I need your help
I want to write an expression using variables vend and vtoday
I want to show count of job applicant between the start date and end date. Both are variables.
Now want to call both the variables in chart by writing expression using set analysis, Please help me in writing the same.
vend =monthstart(addmonths(today(),-5)) and vtoday = date(today()) and WeekEnded is the date field coming from master calender
my expression looks like this
=Count({<WeekEnded = {">=$(=$(vend))<=$(=$(vtoday))"}>} Distinct %KeyJobApplicantID)
Thank you
- Tags:
- qlikview_scripting
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
what is the format for WeekEnded field? Is it formatted in the script using Date() function? Also, try this
=Count({<WeekEnded = {">=$(vend)<=$(vtoday)"}>} Distinct %KeyJobApplicantID)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
what is the format for WeekEnded field? Is it formatted in the script using Date() function? Also, try this
=Count({<WeekEnded = {">=$(vend)<=$(vtoday)"}>} Distinct %KeyJobApplicantID)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you. It worked