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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

add date

Hi All,

how can we add 14 days to the current date?

Thanks

Labels (1)
4 Replies
Not applicable
Author

Hi,

Just do Date([Current Date]+14), it will return 14 days added to the current date. i.e. Below colde returns 31/01/2012.

Date(Today()+14)

Cheers,

DJ

Not applicable
Author

Hi,

I am having a field Bill date in that i m date of this month like '01/01/2012' when i wrote Date([Bill date]+14) this gives me '14/01/1900' but i want 15/01/2012.

Not applicable
Author

Hi,

I think your [Bill date] is not coming as proper date format. Please use below code:

Date(Date([Bill date], 'DD/MM/YYYY')+14, 'DD/MM/YYYY')

Please revert back for any issue.

SunilChauhan
Champion II
Champion II

try this

=Date(date([Bill date]) +14)

Sunil Chauhan