Hello All,
i need to filter a column in data table between two dates. Today’s date and +7 days from today date,
I have a column “StartDate” which in Date format in the excel.
I have assigned to two variables
str_firstday = DateTime.Now.ToString(“MM.dd.yyyy”)
str_Seventhday = Now.AddDays(+7).ToString(“MM.dd.yyyy”)
Can you please tell me a to filter “StartDate” column dates between str_firstday and str_Seventhday
Thank you