I'm building a flow that connects to a Sharepoint Online list and filters the list down using ODATA. I can get the basic filters to work, but I need one final filter that uses the current system datetime to compare to a datetime value field in the list. For example:
Disposition eq 'Initial' and Status eq 'Pending' and SchedConfDate le =Now()
Where SchedConfDate is a datetime column from my SPO list. I need to filter my data down to just those list items whose SchedConfDate is less than or equal to "Now" or "Sysdate" or some other runtime variable/parameter that reprents the current date and time. Does anyone know if ODATA supports using these runtime variables because I have not been able to get any permutation of "Now" or "UTCNow" to work. Or is there another way this could be achieved?
Best Regards,
Mike