I have a Recurrence flow setup that checks once per day if certain items in a SharePoint List have been modified and compiles these into a single email. I use a filter array to compare the modified date with the current date:
formatDateTime(item()?['Modified'], 'yyyy-MM-dd') Is Equal To formatDateTime(utcNow(), 'yyyy-MM-dd')
I would like to add another check (perhaps second filter array?) to compare whether the current and previous versions of the item is the same so that I'm not sending updates if it hasn't changed. If I was using the "When an item or file is modified" trigger this would be straight forward, but I need the recurrence in place to be able to compile the changes rather than send emails for each one separately. Is there an Action or Expression I could use to check for this?