Lookup a value that exists eiter in one table or another table

Hi folks.
I’m sure this is easy, but I searched and cannot solve it.
I want to lookup a name in my table1, and find a matching email that either exists in table2, table3 or table4.
It is because I have 3 different tables with companies (one for each type of company). The matching name is of course in one of the 3 different tables, but i need to search for it in all three. No REF is used here.
Suggestions?

Solved Solved
0 20 1,360
1 ACCEPTED SOLUTION

For example…
INDEX(
LIST(LOOKUP([_THISROW].[Name],“Table2”,“NameColumn”,“EmailColumn”))+
LIST(LOOKUP([_THISROW].[Name],“Table3”,“NameColumn”,“EmailColumn”))+
LIST(LOOKUP([_THISROW].[Name],“Table4”,“NameColumn”,“EmailColumn”))
,1)

View solution in original post

20 REPLIES 20
Top Labels in this Space