非表示のシートからテーブルを使用するには?
エラーが発生します
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 を参照して名前付き範囲を作成する必要がありましたか?