我怎样才能在 Excel 上 return 横向唯一值
How can I return unique values horizontally on Excel
我有一个 table 从 A1-A10 看起来像这样
**Animal**
Zebra
Zebra
Zebra
Giraffe
Giraffe
Monkey
Monkey
Cat
Cat
我只想 return 一行中只有唯一值 HORIZONTALLY - 并按字母顺序对它们进行排序
像这样:
Cat Giraffe Monkey Zebra
目前我在 D3 中有这个公式:但是这个 returns 垂直唯一值
=IFERROR(LOOKUP(2, 1/(COUNTIF($D$2:D2, $A$2:$A$10)=0), $A$2:$A$10), "")
Zebra
Monkey
Giraffe
Cat
使用 Microsoft365:
=TRANSPOSE(SORT(UNIQUE(A2:A10)))
我有一个 table 从 A1-A10 看起来像这样
**Animal**
Zebra
Zebra
Zebra
Giraffe
Giraffe
Monkey
Monkey
Cat
Cat
我只想 return 一行中只有唯一值 HORIZONTALLY - 并按字母顺序对它们进行排序
像这样:
Cat Giraffe Monkey Zebra
目前我在 D3 中有这个公式:但是这个 returns 垂直唯一值
=IFERROR(LOOKUP(2, 1/(COUNTIF($D$2:D2, $A$2:$A$10)=0), $A$2:$A$10), "")
Zebra
Monkey
Giraffe
Cat
使用 Microsoft365:
=TRANSPOSE(SORT(UNIQUE(A2:A10)))