Context:
I’m trying to build a backend workflow - which sends warning emails to users based on whether they have completed their daily activities or not.
Logic
As long as there is at least 1 Daily belonging to the user, and that the Daily’s lastCompleted date is not today, then send warning email.
Problem
The “Search For” function does not allow me to format LastCompleted (which is a date/time field) as a date form, to compare with today’s date. I need both dates to be formatted in pure date form so I can compare effectively)
Ask
How can I work around this?