I want to build a flow that export the latest row from a a sharepoint list.
If i run the flow right after i added a new row to a sharepoint list, i want to get that specific row in my flow.
If i then make another row in my list, that one is the latest and should be extracted with flow.
How to do this?
I have set a compose action with this formula
body('Get_items')?['value']?[sub(length(body('Get_items')?['value']),1)]?['ID']
but that just extract the same row over and over from my list.
Dont get it.