Compare Text with List

I am so confused I have read about IF() IN() INDEX() SORT() and thought I had this figured out but I am completely stuck.

I am trying to compare the text of Project Contacts[Name] to the list of Contacts[Full Name]. If the [Name] matches the [Full Name] then I need to copy the Contacts[ID] into Opportunities[ID]. I have setup a bot to do this but where I am is lost is shown in the image below. Some of the formulas I have tried are below but they all give me erroe โ€œCannot compare Text with List in ([Name] = Contacts[Full name])โ€

Any help is much appreciated!

IF(IN
(Project Contacts[Name], Contacts[Full Name]
),
[Name]=CONTACTS[FULL NAME],CONTACTS[ID],UNIQUEID())

IF(
Index(
Sort(
Contacts[Full Name], TRUE),1)
(Project Contacts[Name]
),
[Name]=CONTACTS[FULL NAME],CONTACTS[ID],UNIQUEID())

INDEX(Project Contacts[Name], Contacts[Full Name],IF([Name]=CONTACTS[FULL NAME],CONTACTS[ID],UNIQUEID()))

1 2 1,173
2 REPLIES 2

Please check out these SELECT and LOOKUP help docs, Iโ€™m betting these are actually what youโ€™re looking for.

Also review this thread:

convert the list using expression Text(value-to-conver-to-text),

hopefully it works

Top Labels in this Space