This line of code works perfectly:
Set Rng = Worksheets("AUX").Range("a1:a14").SpecialCells(xlCellTypeBlanks)
in the sense that effectively the variable Rng is assigned with the proper range. However, if I use the CELLS properties to define the range by using this code line:
Set Rng = Worksheets("AUX").Range(Cells(1, 1), Cells(14, 1)).SpecialCells(xlCellTypeBlanks)
the range is not set (i.e. after code line execution the Rng value is "nothing").
But shouldn't .Range("a1:a14") be equivalent to .Range(Cells(1, 1), Cells(14, 1)) ? It is hours I am trying to find in Internet why the second code line does not set Rng, without success up to now. Can anybody give a tip please?