所以,我打開一個新的Excel工作表只是通過VBA瞭解更多關於數據驗證的創建和我進入下面的代碼是從的Microsoft Developer Network網站的例子:VBA Validation.Add方法失敗
With Range("$E$5").Validation
.Add Type:=xlValidateWholeNumber, _
AlertStyle:=xlValidAlertStop, _
Operator:=xlBetween, Formula1:="5", Formula2:="10"
.InputTitle = "Integers"
.ErrorTitle = "Integers"
.InputMessage = "Enter an integer from five to ten"
.ErrorMessage = "You must enter a number from five to ten"
End With
我得到了下面的錯誤,當我執行的代碼:
運行時錯誤 '-2147417848(80010108)':
Method對象的'添加 '驗證' 失敗
我到處搜尋,但沒有發現對這個問題什麼...
您是否已經在E5設置中進行了驗證?如果是這樣,請嘗試在添加新文件之前用'.Delete'刪除它。 –