how can I check if a datetime is between two datesTime
Hi ,
You can use greater than and less than operator between dates.
Like below example -
CurrDate() > TextToDate("2022-10-01") and CurrDate() < TextToDate("2022-10-30")
You can use your dates in place of TextToDate("2022-10-01")
Hope this will help you.
Thanks a lot It works now