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! Go to 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)
User | Count |
---|---|
18 | |
14 | |
11 | |
7 | |
4 |