我想選擇Sheet2
列中不爲空的列A
中的所有單元格(第一個除外),並將其用作範圍爲Sheet1
的數據驗證列表。我已經有代碼添加驗證:有條件地選擇單元格並將其用作數據驗證列表
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
我不能讓它在Excel 工作;在Excel 2003中,無法添加對其他工作表進行數據驗證的引用。