Hi, I need to know how to add a week to a particular date?

Hi @Jayakiruba_Sekar ,

Considering the date value is already in DateTime datatype variable. Also, we know 7 Days is a week.

Then we can use the number of weeks as the multiplier for 7 days.

yourDateVar.AddDays(7*yourNumberOfWeeksValue)