エクセルマクロ
マクロで外部参照などを出す場合に
Escボタンを途中で押すと中断し
下記の添付画像のような表示が出ます。
途中でキャンセルした場合(Escなど?)
画像のようなエラーを出さずにエラー(コメントを作る)メッセージを表示させて
作業を中断することは可能でしょうか?
可能な場合、下記のどの部分に追加するといいでしょうか?
下記はテキストファイルを参照しエクセルに貼り付けるというマクロです
Private Sub CommandButton1_Click()
Dim fd As FileDialog
Set fd = Application.FileDialog(msoFileDialogFilePicker)
Dim vrtSelectedItem As Variant
With fd
Dim txtpass As Variant
If .Show = -1 Then
For Each vrtSelectedItem In .SelectedItems
txtpass = "TEXT;" & vrtSelectedItem
Next vrtSelectedItem
Else
End If
End With
With ActiveSheet.QueryTables.Add(Connection:= _
txtpass, Destination:=Cells(Rows.Count, 2).End(xlUp).Offset(1, 0))
.Name = "4"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = False
.RefreshPeriod = 0
.TextFilePromptOnRefresh = False
.TextFilePlatform = 932
.TextFileStartRow = 1
.TextFileParseType = xlDelimited
.TextFileTextQualifier = xlTextQualifierDoubleQuote
.TextFileConsecutiveDelimiter = False
.TextFileTabDelimiter = True
.TextFileSemicolonDelimiter = False
.TextFileCommaDelimiter = True
.TextFileSpaceDelimiter = False
.TextFileColumnDataTypes = Array(2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, _
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 _
, 1, 1, 1, 1, 1, 1, 1, 1)
.TextFileTrailingMinusNumbers = True
.Refresh BackgroundQuery:=False
End With
End Sub
お礼
早速出来ました ありがとうございました