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

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
thomas_2583
Contributor III
Contributor III

Today minus 1

Hi, 

I have the following logic to look at yesterday's volume but the logic I have, doesn't return any results (there is data from yesterday). Any idea what is wrong with the logic used please? 

Sum({$<[Date_new] = {"$(=Today()-1)"}>}Volume)

Date_new format is YYYY-DD-MM

Thanks

2 Replies
tresB
Champion III
Champion III

Try putting the date format like:

Sum({$<[Date_new] = {"$(=Date(Today()-1,'YYYY-DD-MM'))"}>}Volume)

jonathandienst
Partner - Champion III
Partner - Champion III

You can try this:

Sum({$<[Date_new] = {"$(=Date(Today()-1, ' YYYY-DD-MM')"}>} Volume)

If that doesn't work, you may need to override some date selection(s), or all selections:

Sum({1<[Date_new] = {"$(=Date(Today()-1, ' YYYY-DD-MM')"}>} Volume)

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein