Open CSV File and Copy the Data on Other sheet

unknownymous

Board Regular
Joined
Sep 19, 2017
Messages
249
Office Version
  1. 2016
Platform
  1. Windows
Hi Guys,

Here's a snap of my codes but it automatically paste the CSV file data on the data sheet. I was wondering if you could help me find the codes for GetOpenFile whereas the path file directory will open. After I paste the address, the macro will open the CSV file and paste everything on the Data Sheet.xlsx then CSV file will close.


Sub Subject()


Dim strFile As String
Dim strCSV As String

strFile = ActiveWorkbook.Path
strCSV = "Subject.csv"
Workbooks.Open strFile & "" & strCSV


Range("A1").CurrentRegion.Copy Destination:=Workbooks("Data Sheet.xlsx").Sheets("Data Sheet").Range("A1")


Workbooks(strCSV).Close


Any help will be much appreciated.

Thank you!
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
you dont have to copy/paste
record a macro, and use DATA, FROM TEXT, stop recording, then review the macro.
this will load the file directly in 1 step using the command:

With ActiveSheet.QueryTables.Add(Connection:= "TEXT;" & strFile & "" & strCSV & ", Destination:=Range("$A$1"))
....
 
Last edited:
Upvote 0
I have below codes but the data from the CSV won't copy on my active workbook. Can you help me?

Dim ws As Worksheet, strlFile as String

Set ws = ActiveWorkbook.Sheets("CB Data")


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
End With
 
Upvote 0

Forum statistics

Threads
1,223,767
Messages
6,174,390
Members
452,561
Latest member
amir5104

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