Forum Discussion
Unique Function - Horizontal Spill
- E_C_TonySep 09, 2022Copper Contributor
Hi both,
Thanks for your replies.
I can get Unique nested inside Transpose to work only when a fixed number of items are returned every time.
The number of items returned by the workbook I am using varies.
The spill facility handles that very well but the workbook layout means I need that to spill horizontally, not vertically.
Does anyone know a way to do that?
- OliverScheurichSep 09, 2022Gold Contributor
=TRANSPOSE(UNIQUE(FILTER(B3:B17,B3:B17>E2)))
I can only guess what you exactly want to do. For example the above formula dynamically spills the result horizontally because the original data is in vertical order in range B3:B17. The filter criteria is B3:B17>E2 which means you can change the value in cell E2 and the formula automatically spills the result (a varying number of cells) horizontally.
Otherwise you might want to attach a screenshot without sensitive data which shows your data and expected result.
- E_C_TonySep 12, 2022Copper Contributor