如何使用隐藏表中的表格?
我收到错误
With Range("AI5:AI" & LastRow).Validation
.Delete
.Add Type:=xlValidateList, AlertStyle:=xlValidAlertStop, Operator:= _
xlBetween, Formula1:="=MyTableFromHiddenSheet"
.IgnoreBlank = True: .InCellDropdown = True: .InputTitle = vbNullString: .ErrorTitle = vbNullString: .InputMessage = vbNullString: .ErrorMessage = vbNullString: .ShowInput = False: .ShowError = True
End With
它需要创建命名范围并引用 Table1 而不像在未隐藏的工作表中那样直接访问?