Hi
Im using this formula to return the unique values from a range:
How do I change it, so that instead of using the whole column, it will just use a defined range set between two cells? I want to this is so the range expands as more data is added. I don't want to use C:C as its pulling the heading from the column in question and I don't want the heading in the unique values.
So A1 will set the range and A2 will be end the range. I've tried adding
but that is just returning the first value and not all the unique values like the original formula.
Thanks
Im using this formula to return the unique values from a range:
Excel Formula:
=UPPER(SORT(UNIQUE(FILTER('CS-LA'!C:C,'CS-LA'!C:C<>"")),,1))
How do I change it, so that instead of using the whole column, it will just use a defined range set between two cells? I want to this is so the range expands as more data is added. I don't want to use C:C as its pulling the heading from the column in question and I don't want the heading in the unique values.
So A1 will set the range and A2 will be end the range. I've tried adding
Excel Formula:
INDEX(CS-LA'!C:C,$A$1):INDEX(CS-LA'!C:C,$A$2
but that is just returning the first value and not all the unique values like the original formula.
Thanks