currentDate = Date.today
start_date = Date(“11/2/2017”)
end_date = Date(“5/2/2019”)
currentDate.between?(start_date, end_date)
Tried this logic, but it is not working for me. Please advise how I need to implement this.
currentDate = Date.today
start_date = Date(“11/2/2017”)
end_date = Date(“5/2/2019”)
currentDate.between?(start_date, end_date)
Tried this logic, but it is not working for me. Please advise how I need to implement this.