Hello,
I have a support team that I manage, I already build a flow process to assign task arrived by email to a person in planner.
but I want to assign tasks by turn for exameple , assign task X to person Z and assign next task Y to person W.
how to do that in flow ?
Thanks in advance
Solved! Go to Solution.
Hello,
the solution I tought about is working great.
I'm using file from oneDrive to read and write value, and using condition with mod function to verify if the number is odd or not
using this expression mod(int(body('Get_file_content')), 2), the file content in the start is 0.
and in the end of the flow I add a function that write in the document add(int(body('Get_file_content')),1)
I hope this can help someone to assing task bu turn.
note this is a temporary solution and not optimal, waiting for flow team to give us acces to latest created task and assigned user for last created task.
Hello,
the solution I tought about is working great.
I'm using file from oneDrive to read and write value, and using condition with mod function to verify if the number is odd or not
using this expression mod(int(body('Get_file_content')), 2), the file content in the start is 0.
and in the end of the flow I add a function that write in the document add(int(body('Get_file_content')),1)
I hope this can help someone to assing task bu turn.
note this is a temporary solution and not optimal, waiting for flow team to give us acces to latest created task and assigned user for last created task.