I have a named range that I'm using to populate a drop-down list. The cells in this range are populated by pulling unique values from another much larger named range on the spreadsheet. When populating this drop-down list, I would like to ignore blank cells in the first named range. I've tried using OFFSET, such as the following:
=OFFSET(Sheet1!$F:$F,1,0,COUNTA(Sheet1!$F:$F)-1,1)
This isn't working, and I think it's because Excel doesn't consider the cells to actually be blank. The cell is instead filled with a formula and the formula is returning "". Is there any way you guys know of to ignore blank values returned by formulas in drop-down lists?