Hello,
I have a Flow that retrieves the max ID of a SharePoint column. When I test it, the return value is OK, but When I call it from PowerApps it won't work.
I want to receive an integer.
If I put a Respond To PowerApps, I get a Record that contains an ID, but thats not and int :
My flow with a respond to Powerapps
Here is the output
If I put a Compose, even though Flow is said to sent an int, PowerApps receives it as a boolean :
My flow with a Compose
Here is the output with a Compose
Here is my function :
add(outputs('Obtenir_les_éléments').body?.value[0].ID,1)Here is how I call my Flow, on a basic button
Set(selectedId;GetMaxElementFromColumn("ID"))I hope you can help me,
Adrien