0
當出現錯誤時,我想返回到我的用戶表單並更改表單中輸入的信息並將其傳遞到宏,然後繼續:如果Len(Dir( sFilePath & newfol,vbDirectory))= 0 ...VBA - Excel - On Error goto userform
If Len(Dir(sFilePath & newfol, vbDirectory)) = 0 Then
MkDir sFilePath & newfol & "\"
On Error GoTo UserForm1
Else
MsgBox ("Folder already exists please re enter new folder name")
'End
UserForm1.Show
MoveAndSave_Reports
End If
上面給我的錯誤信息:當您使用「標籤上沒有 「對錯誤轉到UserForm1」
作爲Craig所說的附加內容,製作一個標籤,然後編寫一些代碼來調用用戶表單並完成需要完成的工作。 – 2012-01-19 03:28:43