I apologize in advance if there was a post that answers this question. Dozens of searches here didn't find me a working currently useable solution.
I'm attempting to create a workflow that sends a summary email of all items in a sharepoint list that are older than 7 days, based off of a date column 'DateAdded' formatted in MM/DD/YYYY format.
I can't tell if I'm supposed to be using ticks or a lessorequals comparison using the current date with utcnow or what the heck to do.
I was trying to start using a variable similiar to the expression - (From https://sympmarc.com/2021/02/22/calculate-the-difference-between-two-dates-in-power-automate/)
div(sub(ticks(formatDateTime(utcNow(),'yyy-MM-dd')),ticks(item()?['Modified'])),864000000000)
Trying to use the DateAdded column in place of 'modified' but given that modified is a built in item property I'm probably on the wrong track.
Anyone have any beginner friendly tips?