Hi,
I'd like to select all cells (except the first one) from column A of sheet B that are not empty, and use it as the list for data validation on a range of sheet A. I already have code to add the validation:
Cells.SpecialCells(xlCellTypeFormulas).Offset(0, 1).Select
With Selection.Validation
.Delete
.Add Type:=xlValidateList, AlertStyle:=xlValidAlertStop, Operator:= _
xlBetween, Formula1:="=**The range i need**"
.IgnoreBlank = True
.InCellDropdown = True
End With
I'm not able to make it work on excel 2003. In excel 2003 it's not possible to add a reference to another sheet for data validation
Thank you!