Hi
I am trying to make use of the odata filter in the SharePoint connector get items. I have tried several different ways but I just can't get it to filter to only get items that are 90 days old. I've tried other similar referenced solutions for similar queries in the community. It's also worth pointing out I have another way to calculate the 90 days later in the flow, but it means I have 3 compose steps and a condition step. If I could get it working in the odata filter line it means I could cut these out, as it takes 3 seconds per item to run through the compose functions. When I have a list of 1800 to run through, it would be good to only pull the items that need action as per the filter and speed up the flow.
I have a sharepoint list called Date Access Granted (picked up as DateAccessGranted).
I have tried
DateAccessGranted eq date(addDays(utcNow(), -90)
DateAccessGranted eq formatDateTime(addDays(utcNow(), -90), 'yyyy-MM-dd')
Can anyone help me with where I am going wrong?