Hi All,
I have a column lets say Datevalue which has current as well as future dates.I just want to select today's date and move ahead.I don't want to use filter and select today's date as this process should be dynamic everyday.I don't have an effective solution as of now.Any help appreciated.
Regards,
Rahul
Solved! Go to Solution.
@rahulshetty925 The following would give you today's date as of runtime:
DateTimeParse(DateTimeToday(),"%Y-%m-%d")
Thanks Patrick.I used it in a custom filter and it worked fine.
Thank You.