I'm building a workflow, to be ran daily, with a formula tool to review a date column and set a new column value to 'Yes' if the date column match's todays date and 'No' if it doesn't (See below table). I've tried using the below formula but receive the following error : Invalid type in operator==.
Any advice? Is it an issue with the date format?
IF [Filing date 1]=DateTimeToday()
THEN [Flag] = "Yes"
ELSE [Flag] = "No"
Endif
| Client | Filing date 1 (yyyy-mm-dd) | Flag |
| Client A | 2021-12-06 | Yes |
| Client B | 2021-12-05 | No |