Excel VBA getting table columns by name in a specific sheet within a closed workbook

Klash Ville

Board Regular
Joined
Sep 19, 2017
Messages
83
Hello everyone, before I wish to explain my question, I want to say that this forum has helped me a lot solving my automated excel obstacles :)

So right now, I have this piece of code that simple asks the user for the workbook location, name and sheet name in order to fetch the entire sheet. But like the title says, I wish to concentrate that fetching to table columns by name:

Code:
Sheets.Add After:=ActiveSheet

Range("D3").Select
ActiveCell.Value = InputBox("Please insert the desired file path:")
Range("D4").Select
ActiveCell.Value = InputBox("Now please insert the name of the file:")
Range("D5").Select
ActiveCell.Value = InputBox("Lastly, please insert the name of the target sheet:")
 
Sheets("Sheet1").Select
PathName = Range("D3").Value
Filename = Range("D4").Value
TabName = Range("D5").Value
ControlFile = ActiveWorkbook.Name
Workbooks.Open Filename:=PathName & Filename
Sheets(TabName).Copy After:=Workbooks(ControlFile).Sheets(1)
Windows(Filename).Activate
ActiveWorkbook.Close SaveChanges:=False
Windows(ControlFile).Activate


Worksheets("Sheet1").Activate
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.

Forum statistics

Threads
1,214,869
Messages
6,122,012
Members
449,060
Latest member
LinusJE

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