Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

calculate enddate

Hi,

I have a startdate (01.10.2015) and a useful life of 60 month (to Keep it simple).

Now I Need to calculate the Enddate (should be 30.09.2020).

I know this is an easy example but could you please tell me how to calculate this enddate in the script?

Thanks in advance.

Chris

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

try

addmonths(startdate,60) as enddate

View solution in original post

3 Replies
Anonymous
Not applicable
Author

try

addmonths(startdate,60) as enddate

avinashelite

if your start date is in proper date format then use the Addmonths() function

try like this

Addmonths(startdate,60) as Enddate

Not applicable
Author

thanks alot.