Hi,
I have a SharePoint List which cumulates ticket updates for incidents. I need to create a Flow that send an email when an incident has breached the next update due time. The problem i have is that there will often be multiple rows in the list for the same incidents (older updates). I need the flow to only pick out the current 'Next update Due' for each incident.
Example below in a table (made up). Highlighted in yellow would be the most recently received updates. Those are the ones i need and the rest can be ignored. Table ordered newest to oldest.

My flow would be
1) Get SP list items
2) Get newest update for each incident only
3) condition (If UTCnow is less than 'Next Update Due' . Send email
Any help appreciated.