Forum Discussion
varbergt
Dec 22, 2023Copper Contributor
Unique for multiple columns without using Name Manager
I have below table and would like to use the unique formula without using the Name Manager to get unique values based on column 1 and 3.
Albertsons | East | Coffee |
Food 4 Less | West | Tea |
Food 4 Less | East | Tea |
Costco | West | Coffee |
Costco | West | Tea |
Result using =UNIQUE(INDEX(tblUnique;SEQUENCE(ROWS(tblUnique));{1\3}))
tblUnique is the above table.
Albertsons | Coffee |
Food 4 Less | Tea |
Costco | Coffee |
Costco | Tea |
Any idea how this can be done?
3 Replies
Sort By
- SalposiCopper Contributor
any idea ...
or
=UNIQUE(HSTACK(TAKE(tblUnique,,1),TAKE(tblUnique,,-1)))
or
=UNIQUE(HSTACK(DROP(tblUnique,,-2),DROP(tblUnique,,2)))
- Riny_van_EekelenPlatinum Contributor
Rather odd that you edited your answer to include the formula I had already posted more than an hour earlier ????
- Riny_van_EekelenPlatinum Contributor