How to capture the display name of multiple people from a people/group column and insert in a notification?

  • 18 December 2017
  • 6 replies
  • 20 views

Badge +2

UPDATE: Click here for the detailed tutorial to answer this question.

Hello,

I have a people/group column on my form. Users are able to enter more than one employee name. I want to capture the Display Name (not the user name) of the people in this field in a variable and insert it in a notification. If I use the column itself the value would be something like i:0#.w|domain./username 1, /domain.com/username2 (domain is the SharePoint root of the company). I can capture the Display Name of the first employee in the field by using Query workflow action and storing it in a workflow variable but I cannot do that for other people in the list. As example if the domain is GoodCo.com and there are three people on the field e.g. John DoeBill Smith and Anna Kennedy if I insert the column directly in the notification I will get something like:

i:0#.w|GoodCojsmith;i:0#.w|GoodCosmith;i:0#.w|GoodCoakennedy

I can use Query User Profile and store the Display Name in a workflow variable but this will only capture the name of the first person. I appreciate your help.


6 replies

Userlevel 3
Badge +12

Hi,

You can achieve this as below.

1. I assume that users are in a variable in ";" separated.

2. Use "Regular Expression" action with "Pattern - ; ", "Operation = Splict", and "Input Text = multipleUsers" "Store result in = collUsers (variable)"

3. In a "For Each" action, take each user name in a variable, then use "Query User Profile" action to get user's "Name".

I have used the build string action to append each display name to a "multiline text varialbe". Let me know if you need any additional details.

Thank you.

Badge +2

Hi Krishna Chaluvadi‌,

Thank you very much for sharing your input. How do you build the string inside the loop though? It will overwrite the text variable in the loop with the last user name. In my experience it keeps the display name of the last person. I might be doing something wrong. I'd appreciate it if you expand on this a little more.

Kindest regards,

Houman

Badge +2

I created a detailed illustrated article bout this if anyone needs more info on this:

https://community.nintex.com/docs/DOC-6605-how-to-capture-the-display-name-of-multiple-people-from-a-person-or-group-column-and-insert-them-in-a-notification

Userlevel 5
Badge +14

use set variable action and configure proper 'return type'.

211746_pastedImage_1.png211747_pastedImage_2.png

‌  ‌ return type‌

Badge

Hi ,

Instead of Build String operation you can use Collection.

Badge +4

Thank you so very much for the answer and detailed tutorial.  I have looked for this for a while & I'll be happy to put it in place.

Reply