The goal here is to implement something like what's found in the thread below, to automatically delete some files out of a Sharepoint document library when a date field meets a certain condition.
https://powerusers.microsoft.com/t5/Using-Flows/Automatically-delete-files-in-Document-Library-after-X-days/td-p/70009'
The flow is set up as such:

And the condition is using this expression:
greater(utcNow('yyyyMMdd'), formatDateTime(addDays(item()?['Marketing_x0020_ID_x0020__x0028_Lookup_x0029__x003A_Expire_x0020_Date']['Value'], 30), 'yyyyMMdd'))Where "utcNow('yyyyMMdd')" should be the current date, while the latter half of the formula is grabbing the "Expire Date" field from the document library's files, then adding 30 days to it. My understanding is that this should be triggering for items where the "Expire Date" is older than 30 days ago from now. However, the condition evaluates to false, and I'm not clear why. Can someone provide some pointers here?