For example, if I have 2 cells that contain
a1:(aa;bb;cc;dd;ee)
b1:(cc;dd;ee;ff;gg)
Is there a formula to show (cc;dd;ee) in one cell? Strings in a cell are separated by ";"
For example, if I have 2 cells that contain
a1:(aa;bb;cc;dd;ee)
b1:(cc;dd;ee;ff;gg)
Is there a formula to show (cc;dd;ee) in one cell? Strings in a cell are separated by ";"
In step4: Array formula below: Keep in mind that after you finished writing the formula in the cell, press (Ctrl + Shift + Enter) otherwise your formula will give value error(#VALUE!). It is an array formula.
=CONCAT("(",TEXTJOIN(";",TRUE,IF(C10=C11:G11,TEXTJOIN(";",TRUE,C10),IF(D10=C11:G11,TEXTJOIN(";",TRUE,D10),IF(E10=C11:G11,TEXTJOIN(";",TRUE,E10),IF(F10=C11:G11,TEXTJOIN(";",TRUE,F10),IF(G10=C11:G11,TEXTJOIN(";",TRUE,G10),"")))))),")")