Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

SQL DATEADD Equivalent in Load Qlikview

Hello,

I would like to use something that do the same thing as dateadd(sql) but in the load

Load

dateadd() as help,

...

Thanks

3 Replies
Miguel_Angel_Baeyens

Hi Alejandro,

You can use the AddMonths() or AddYears() function in QlikView, and you can also use the Date() function with an expression as parameter:

Date(Today() - 7 * $(vWeekOffset)) AS Date

Hope that helps.

Miguel

Not applicable
Author

i use something like this:

for week =1 to 54

DATEADD(week,1,'2010/01/01')

DATEADD(week,2,'2010/01/01')

DATEADD(week,3,'2010/01/01')

next

'2010/01/01'=Year'/01/01'

how would be?

Date(week(Today()) + 1 ) AS Date?

Miguel_Angel_Baeyens

Hi Alejandro,

It should be very similar to my example above

Weeks:

LOAD Date(WeekStart(Today()) + (7 * RecNo())) AS Week

AUTOGENERATE 54;

Search the QlikCommunity for "Master Calendar", there are lots of good examples, more simple and more complex. Check this app that builds a master calendar and uses it in expressions.

Hope that helps.

Miguel