All --
I'm working on a flow to identify records from Dynamics 365 that have an estimated close date that is before todays date but am running into issues when trying to use the now() function. The error message I receive is that the now function isn't supported.
Is anyone aware of a different method to filter a date time field based on current date?
Thanks,
Eric
Hi @eraarup,
Try this and see if it would help:
In addition to use the Filter Query, we may also work with the Filter Arrary Action:
Under the condition, copy and paste the following formula:
@greaterorequals( formatDateTime(item()?['estimatedclosedate'], 'yyyymmddHHss'), utcnow('yyyymmddHHss') )
Regards,
Michael