I don't think I could explain better the just show with good example. I want to SPLIT() UNIQUE() in one formula...
There are 2 tables:
Table1: Table2:
ID Name | Phone | Email
Jhon,111,email1 Formula->[here]
Adam,222,email2
Adam,222,email2
Kris,333,email3
Here is what formulas I use: =TRANSPOSE(ArrayFormula(unique(split(CONCATENATE(Orders!H2:H&" ");", "))))
And this is what it does
ID Name | Phone | Email
Jhon,111,email1 Formula->Jhon
Adam,222,email2 111
Adam,222,email2 email1
Kris,333,email3 Adam
222
email2
Kris
333
email3
Another formula is: =ArrayFormula(unique(split(CONCATENATE(Orders!H2:H&" ");", ")))
ID Name | Phone | Email | | |
Jhon,111,email1 Formula->Jhon 111 email1 Adam 222 etc...
Adam,222,email2
Adam,222,email2
Kris,333,email3
Here is what I am trying to do
ID Name | Phone | Email
Jhon,111,email1 Formula->Jhon 111 email1
Adam,222,email2 Adam 222 email2
Adam,222,email2 Kris 333 email3
Kris,333,email3