Macro to exit VBA once cancel or esc is used

Chandresh

Board Regular
Joined
Jul 21, 2009
Messages
146
HI All,

I am using below code to convert csv to excel, macro is running fine if we select the csv file.

however I need a help .. with the code which can exit the vba once we press cancel or escape button


Code:
Sub CSV()
Dim WS As Worksheet, strFile As String
Set WS = ActiveWorkbook.Sheets("Download") 'set tocurrent worksheet name
strFile = Application.GetOpenFilename("Text Files(*.csv),*.csv", , "Please select text file...")
With WS.QueryTables.Add(Connection:="TEXT;" &strFile, Destination:=WS.Range("A1"))
    .TextFileParseType = xlDelimited
    .TextFileCommaDelimiter = True
     .Refresh
End With
End Sub
Thanks
Chandresh
 
Last edited by a moderator:

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
You can use:

Code:
If strFile <> "False" then
With WS.QueryTables.Add(Connection:="TEXT;" &strFile, Destination:=WS.Range("A1"))
    .TextFileParseType = xlDelimited
    .TextFileCommaDelimiter = True
     .Refresh
End With
end if

though it would be better to declare strFile as Variant and test it against False.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,429
Messages
6,124,842
Members
449,193
Latest member
MikeVol

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top