Hi all
I have a flow that creates a new record. These records have a sequential four digit numbering system. I need to find the last number and then add one.
I have set a flow that does this well once but after that it does not add to any of the new records, and when I look in the list rows the new number is not there.
The column I am trying to add the sequential number to is called softsys_name display name is "Call Number"
I was wondering if it was a test number issue but I am stumped.


Map = int(item()?['softsys_name'])

(Get Max ID) Inputs = max(body('Select'))

(New ID) Inputs = add(outputs('Get_Max_ID'),1)

Any advice would be appreciated.