Flow requirement:
1. Get User Profile of a Group's member
2. Compare if User Information already exists in SharePoint List or not
3. if not exists then create Item
4 If exist than update the item with current Item.
Any suggestion on same !!
Solved! Go to Solution.
Hi @CJ_SH,
Could you please share more details about your SharePoint list?
I have created a SharePoint list on my side and the data structure of it as below:Note: The User Principal Name (UPN) column, UserName column, Mobile Phone column and Email address column are all Single line of text type column. Each item has a unique User Principal Name (UPN) value, we would use this column (User Principal Name (UPN) column) to find the specific and unique item within my following flow.
I have made a test on my side and please take a try with the following workaround:
Add a "Get items" action, specify Site Address and List Name. Then add a "Filter array" action, From set to output of "Get items" action, Within Condition box, left input box set to User Principal Name dynamic content of the "Get items" action, right input box set to User Principal Name dynamic content of the "Get user profile (V2)" action.
Add a Condition, click "Edit in advanced mode", type the following formula:
@empty(body('Filter_array'))
Within "If/yes" branch of Condition,add a "Create item" action, specify Site Address and List Name. The columns that you created set to corresponding dynamic content values of the trigger.
Within "If/no" branch of Condition, add a "Apply to each 2" action, input parameter set to output of "Filter array" action. Within "Filter array" action, add a "Update item" action, specify Site Address and List Name. Id field set to following formula:
item()?['ID']
Title field set to following formula:
item()?['Title']
The columns that you created set to corresponding dynamic content values of the trigger.
Image reference:
The flow works successfully as below:
Best regards,
Kris
Hi @CJ_SH,
Could you please share more details about your SharePoint list?
I have created a SharePoint list on my side and the data structure of it as below:Note: The User Principal Name (UPN) column, UserName column, Mobile Phone column and Email address column are all Single line of text type column. Each item has a unique User Principal Name (UPN) value, we would use this column (User Principal Name (UPN) column) to find the specific and unique item within my following flow.
I have made a test on my side and please take a try with the following workaround:
Add a "Get items" action, specify Site Address and List Name. Then add a "Filter array" action, From set to output of "Get items" action, Within Condition box, left input box set to User Principal Name dynamic content of the "Get items" action, right input box set to User Principal Name dynamic content of the "Get user profile (V2)" action.
Add a Condition, click "Edit in advanced mode", type the following formula:
@empty(body('Filter_array'))
Within "If/yes" branch of Condition,add a "Create item" action, specify Site Address and List Name. The columns that you created set to corresponding dynamic content values of the trigger.
Within "If/no" branch of Condition, add a "Apply to each 2" action, input parameter set to output of "Filter array" action. Within "Filter array" action, add a "Update item" action, specify Site Address and List Name. Id field set to following formula:
item()?['ID']
Title field set to following formula:
item()?['Title']
The columns that you created set to corresponding dynamic content values of the trigger.
Image reference:
The flow works successfully as below:
Best regards,
Kris
Thanks Kris( @v-xida-msft ) for your solution. I follow your mentioned steps and it works perfectly fine.
But if you can help me to understand the FilterArray action and its condition
@empty(body('Filter_array'))
Thank you, it works.
Since this solution was published we also have new triggers available for newlly aded and remover Teams group members.
Learn to digitize and optimize business processes and connect all your applications to share data in real time.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
At the monthly call, connect with other leaders and find out how community makes your experience even better.
User | Count |
---|---|
21 | |
20 | |
9 | |
8 | |
8 |
User | Count |
---|---|
34 | |
30 | |
25 | |
23 | |
12 |