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

Add Day Function ?

Hi, I need help with this script, basically what I need is the date of Today() - 1 In Ansi SQL

This is what Ive got=

Yesterday = Today() - 1;



Yesterday_Ansi = YEAR(Yesterday) + MONTH(Yesterday) + Day(Yesterday) Yesterday= Today() - 1;

Im getting an error on the second Line, becuase it appears that the YEAR, MONTH & DAY Functions expect the Variable Yesterday in date format, but when I use the minus operator it gets saved as an integer.

Any Ideas?

Thank you in advance,

Jose.

1 Solution

Accepted Solutions
Not applicable
Author

Not positive, but try this:


Yesterday = Date#(Today() - 1)


View solution in original post

1 Reply
Not applicable
Author

Not positive, but try this:


Yesterday = Date#(Today() - 1)