Calculate a date after specific days start from today

Hi, I have doubts about calculating a date after 183 days start from today.
How should I do that? Thanks a lot if you can solve my doubts

Hi,

Can you try the following?

newDate = Today.AddDays(183)

Regards,

@Lau_Wei_Ting

Try this:

Now.AddDays(183).Tostring("dd-MM-yyyy")

Thanks I have solve my doubts!
I have another doubts if I want to calculate a date before 183 days start from today.
With this how should i do ?

1 Like

@Lau_Wei_Ting

It should be like this.

     Now.AddDays(-183).Tostring("dd-MM-yyyy")

Thank you so much !!!

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.