Date Calculation

Hi All,

I want to check weather if todays date is between the start date and the end date.
Can anyone please help me out on this.

Please find the sample data

|Start_Date|End_Date|
|1/09/2020|31/12/2999|

1 Like

Hi @VishalN,

Try the below code

dateToCheck>= startDate And dateToCheck<=endDate

Use the datetime library functions

Hi Vishal
Use if statment get user input of date first and then use if activity
if( CurrentDate >= StartDate And CurrentDate <= EndDate)
(write line = yes)
else
(write line = no)

Hope it will help u :slight_smile: