Forum Discussion
Bernard_Bouree
Feb 05, 2022Copper Contributor
Help on a UNIQUE formula
Hi I have the following list of year: 2022 2023 2023 2025 2025 2026 2027 2028 from A1:K1 I wish to find the single values and put the following formula in B1=SINGLE(A1:K1) but got the sames val...
- Feb 05, 2022
UNIQUE works down the array to generate a distinct set of rows. To do the reverse and work from left to right across an array (here just a single row) you need to add a further parameter
= UNIQUE(year,1)
where 'year' is a defined name that refers to A1:K1.
PeterBartholomew1
Feb 05, 2022Silver Contributor
UNIQUE works down the array to generate a distinct set of rows. To do the reverse and work from left to right across an array (here just a single row) you need to add a further parameter
= UNIQUE(year,1)
where 'year' is a defined name that refers to A1:K1.
BernardBouree1
Feb 06, 2022Copper Contributor