Create variable to check current day
drag assign activity and create currentday variable.
currentday=DateTime.Now.DayOfWeek.ToString
Then use If condition if currentday is Monday, then in the Then section, use the Assign Activity to filter the datatable. in assign use read range output variable
Hi @siddhi
Try This :-
Assign a data table and paste the below query DT.Select(“[Date Column] >= #”+Dates.ToString +“# AND [Date Column] <= #”+Dates2.ToString+“#”).CopyToDataTable
Where Date Column is the column of your Datatable containing Date
And
Dates and Dates2 are the variables with datatype date time.
Cheers