I've got a named range called sitelocation, this it taking data from worksheet sites column B rows 10 - > 59
In Cell M10 I've added =UNIQUE(sitelocation)and that has produces the unique values from Column B, but it also contains a 0 entry.
If I make a names range as follows that doesn't contain the 0 entry, but does have duplicates.
=OFFSET(INDIRECT("Sites!$B$10"),0,0,COUNTA(Sites!$B:$B),1)
I've tried wrapping that with UNIQUE, but it errors.
=OFFSET(INDIRECT("Sites!$B$10"),0,0,COUNTA(Sites!$B:$B),1)
Ultimately I want to create a drop down list of unique values from Worksheet Sites B10:B59, with no 0 entries so I can use it on any worksheet in this workbook.
Can some one help.
Thanks