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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Set analysis problem

can anybody correct this one??

basically this expression shows all calls for previous day on that date, if Monday comes the expression should show on Friday data,can anybody help me out??

Only({1<row_date={'$(=Date(Today()-1))'

}, if(WeekDay='Mon',date(max(row_date-3)>}agentacdcalls))

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

it will work by using this...

vEndDate =today()

vStartDate =firstworkdate(vEndDate,2)

=Sum({<SalesDate={'>=$(=vStartDate)<=$(=vEndDate)'}>}Sales)

View solution in original post

1 Reply
Anonymous
Not applicable
Author

it will work by using this...

vEndDate =today()

vStartDate =firstworkdate(vEndDate,2)

=Sum({<SalesDate={'>=$(=vStartDate)<=$(=vEndDate)'}>}Sales)