Hi @andy_duong,
What is the extent of the list of names in the other table? If it’s a short list, you can write a conditional statement to look out for a specified list of people and return their names in a list. Here’s a formula for that:
IF(
FIND(
"Judy",
Notes
),
"Judy" & ", " & "\n"
)
&
IF(
FIND(
"Kyle",
Notes
),
"Kyle" & ", " & "\n"
)
&
IF(
FIND(
"Lisa",
Notes
),
"Lisa"
)
If instead you have a larger table with a growing list of names, you may need to turn to the scripting block to write something to account for that.