How do I eliminate the blank cell value in data validation list without creating a new column to sort out the empty cell?
Formula for my define name
=MASTER!$C$2:INDEX(MASTER!$C$2:$C$100000,SUMPRODUCT(--(MASTER!$C$2:$C$100000<>"")))
How do I eliminate the blank cell value in data validation list without creating a new column to sort out the empty cell?
Formula for my define name
=MASTER!$C$2:INDEX(MASTER!$C$2:$C$100000,SUMPRODUCT(--(MASTER!$C$2:$C$100000<>"")))
In google sheets i would use UNIQUE
which returns a list of unique values. This would remove empty values. To do it in excel is a little trickier but you can still do it:
Filter all unique items like Google Docs
Edit: As @m-douda mentioned this would also eliminate any duplicate records that are not empty.