I am trying to extract unique values from multiple column. Below image demonstrate my sample data and desired output. My data will increase day by day and I want to get unique list to a separate column. I have tried below formula line feed character char(10) as separator
which gives me result in a single and I then have to manually WRAP TEXT
the cell. But I want result to separate cells not in same cell.
=TEXTJOIN(CHAR(10),TRUE,B4:D10)
I have also tried UNIQUE()
formula. But this doesn't give me desired result.
=UNIQUE(B4:D10)