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

Set Analysis and Set Expression - actual month

I've created a dashboard with daily-values. I used a trigger, when the .qvw opens select Date as follows 

 

firstworkdate(today(),3, $(vFeiertage))

 

I also want to show cumulated values, in this example the sales. If the formula above returns a date like 12.02.2020 i need to get 01.02.2020 till 12.02.2020 in my set expressions/analysis. 

 

But how to?

1 Solution

Accepted Solutions
tresesco
MVP
MVP

You can try using MonthStart() like:

">=MonthStart(firstworkdate(today(),3, $(vFeiertage)))   <=firstworkdate(today(),3, $(vFeiertage)) "

View solution in original post

2 Replies
tresesco
MVP
MVP

You can try using MonthStart() like:

">=MonthStart(firstworkdate(today(),3, $(vFeiertage)))   <=firstworkdate(today(),3, $(vFeiertage)) "

fhinland_1
Contributor II
Contributor II
Author

Works as joy - many thanks