These are two simple lines of code to find an instance of a 6 digit number in a list. If the number exists, everything works perfectly but if not, I get the error "Object variable or With block variable not set"
The lines of code are
COL = Cells(5, "A").Text
RowFound = Sheets("Master List").Columns("A").Find(What:=COL).Row
The cell format is Text in the column and in the search data cell
Any advice on this would be helpful and much appreciated