VBA Import Data Question

Glasgowsmile

Active Member
Joined
Apr 14, 2018
Messages
280
Office Version
  1. 365
Platform
  1. Windows
Hello!

Currently my spreadsheet uses the following code, which I just found off another site. It's great but I need to advance it a bit and don't know how.

I would like to be able to select the document but have it automatically import a specific range (which always remains the same) within the spreadsheet and then place it in a specific spot on my current spreadsheet.

Where do I start? lol

Code:
Sub ImportDatafromotherworksheet()    Dim wkbCrntWorkBook As Workbook
    Dim wkbSourceBook As Workbook
    Dim rngSourceRange As Range
    Dim rngDestination As Range
    Set wkbCrntWorkBook = ActiveWorkbook
    With Application.FileDialog(msoFileDialogOpen)
        .Filters.Clear
        .Filters.Add "Excel 2007-13", "*.xlsx; *.xls; *.xlsm; *.xlsa"
        .AllowMultiSelect = False
        .Show
        If .SelectedItems.Count > 0 Then
            Workbooks.Open .SelectedItems(1)
            Set wkbSourceBook = ActiveWorkbook
            Set rngSourceRange = Application.InputBox(prompt:="Select source range", Title:="Source Range", Default:="A1", Type:=8)
            wkbCrntWorkBook.Activate
            Set rngDestination = Application.InputBox(prompt:="Select destination cell", Title:="Select Destination", Default:="A1", Type:=8)
            rngSourceRange.Copy rngDestination
            rngDestination.CurrentRegion.EntireColumn.AutoFit
            wkbSourceBook.Close False
        End If
    End With
End Sub
 

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.
Hi & welcome to MrExcel.
How about
Code:
Sub ImportDatafromotherworksheet()
   Dim wkbCrntWorkBook As Workbook
   Dim wkbSourceBook As Workbook
   Set wkbCrntWorkBook = ActiveWorkbook
   With Application.FileDialog(msoFileDialogOpen)
      .Filters.Clear
      .Filters.Add "Excel 2007-13", "*.xlsx; *.xls; *.xlsm; *.xlsa"
      .AllowMultiSelect = False
      .Show
      If .SelectedItems.count > 0 Then
         Workbooks.Open .SelectedItems(1)
         Set wkbSourceBook = ActiveWorkbook
         Sheets("[COLOR=#ff0000]Sheet1[/COLOR]").Range("[COLOR=#ff0000]A1:Z40[/COLOR]").Copy wkbCrntWorkBook.Sheets("[COLOR=#0000ff]Sheet1[/COLOR]").Range("[COLOR=#0000ff]A1[/COLOR]")
         wkbCrntWorkBook.Sheets("[COLOR=#0000ff]Sheet1[/COLOR]").Range("[COLOR=#0000ff]A1[/COLOR]").CurrentRegion.EntireColumn.AutoFit
         wkbSourceBook.Close False
      End If
   End With
End Sub
Change values in red to match your source & values in blue to match the destination
 
Upvote 0
Thanks!

After reviewing, I realized I have a few other issues here.

I need to make multiple selections during the import and paste those in multiple destination - do I just create a line of code for each selection/destination?

Additionally, the destinations actually need to be more dynamic. I would need it to look at the cell to the left - if blank then put data there but if it has data then go 1 cell to the right. Is that possible?
 
Upvote 0
Maybe something like
Code:
Sub ImportDatafromotherworksheet()
   Dim wkbCrntWorkBook As Workbook
   Dim wkbSourceBook As Workbook
   Dim Rng As Range
   Set wkbCrntWorkBook = ActiveWorkbook
   
   With Application.FileDialog(msoFileDialogOpen)
      .Filters.Clear
      .Filters.Add "Excel 2007-13", "*.xlsx; *.xls; *.xlsm; *.xlsa"
      .AllowMultiSelect = False
      .Show
      If .SelectedItems.count > 0 Then
         Workbooks.Open .SelectedItems(1)
         Set wkbSourceBook = ActiveWorkbook
         If wkbCrntWorkBook.Sheets("Sheet1").Range("A1") = "" Then
            Set Rng = wkbCrntWorkBook.Sheets("Sheet1").Range("B1")
         Else
            Set Rng = wkbCrntWorkBook.Sheets("Sheet1").Range("C1")
         End If
         Sheets("Sheet1").Range("A1:Z40").Copy Rng
         Rng.CurrentRegion.EntireColumn.AutoFit
         wkbSourceBook.Close False
      End If
   End With
End Sub
 
Upvote 0
Thanks,

This is what I've got so far.

As it stands now, if C30 is blank then it puts the data there but if it has information then it moves over 1 due to the offset. Problem is - I need it more dynamic. Next import I would need it to reference C31 instead of C30 and then move the data over to the right one.

Additionally, I need to pull 3 separate cells each import and they go to 3 different desitnations. I've tried adding commas but it doesn't seem to like that method.

Code:
Sub ImportDatafromotherworksheet()   Dim wkbCrntWorkBook As Workbook
   Dim wkbSourceBook As Workbook
   Dim Rng As Range
   Set wkbCrntWorkBook = ActiveWorkbook
   
   With Application.FileDialog(msoFileDialogOpen)
      .Filters.Clear
      .Filters.Add "Excel 2007-13", "*.xlsx; *.xls; *.xlsm; *.xlsa"
      .AllowMultiSelect = False
      .Show
      If .SelectedItems.Count > 0 Then
         Workbooks.Open .SelectedItems(1)
         Set wkbSourceBook = ActiveWorkbook
         If wkbCrntWorkBook.Sheets("HotelData").Range("C30") = "" Then
            Set Rng = wkbCrntWorkBook.Sheets("HotelData").Range("C30")
         Else
            Set Rng = wkbCrntWorkBook.Sheets("HotelData").Range.Offset(0, 1)
         End If
         Sheets("Glance").Range("I11").Copy Rng
         Rng.CurrentRegion.EntireColumn.AutoFit
         wkbSourceBook.Close False
      End If
   End With
End Sub
 
Upvote 0
If you want to put the data into C30 then D30, E30 etc try
Code:
Sub ImportDatafromotherworksheet()
   Dim wkbCrntWorkBook As Workbook
   Dim wkbSourceBook As Workbook
   Dim Rng As Range
   Dim Cols As Long
   
   Set wkbCrntWorkBook = ActiveWorkbook
   
   With Application.FileDialog(msoFileDialogOpen)
      .Filters.Clear
      .Filters.Add "Excel 2007-13", "*.xlsx; *.xls; *.xlsm; *.xlsa"
      .AllowMultiSelect = False
      .Show
      If .SelectedItems.count > 0 Then
         Workbooks.Open .SelectedItems(1)
         Set wkbSourceBook = ActiveWorkbook
         Cols = Application.CountA(wkbCrntWorkBook.Sheets("HotelData").Range("C30:[COLOR=#ff0000]H30[/COLOR]")) + 3
         Sheets("Glance").Range("I11").Copy wkbCrntWorkBook.Sheets("HotelData").Cells(30, Cols)
         wkbCrntWorkBook.Sheets("HotelData").Cells(30, Cols).CurrentRegion.EntireColumn.AutoFit
         wkbSourceBook.Close False
      End If
   End With
End Sub
Where H30 is the last cell you'd want to fill.
 
Upvote 0
This covers half of the issue, thanks!

so I'm now able to pull the correct data I want but I can't get the data to go where I need it to.

I want it to pull I11, N11, and S11 from Glance and put it into C30, R30, AG30 respectively and keep moving to the right side each time I import the data.

Code:
Sub ImportDatafromotherworksheet()   Dim wkbCrntWorkBook As Workbook
   Dim wkbSourceBook As Workbook
   Dim Rng As Range
   Dim Cols As Long
   
   Set wkbCrntWorkBook = ActiveWorkbook
   
   With Application.FileDialog(msoFileDialogOpen)
      .Filters.Clear
      .Filters.Add "Excel 2007-13", "*.xlsx; *.xls; *.xlsm; *.xlsa"
      .AllowMultiSelect = False
      .Show
      If .SelectedItems.Count > 0 Then
         Workbooks.Open .SelectedItems(1)
         Set wkbSourceBook = ActiveWorkbook
         Cols = Application.CountA(wkbCrntWorkBook.Sheets("HotelData").Range("C30,R30,AG30")) + 3
         Sheets("Glance").Range("I11,N11,S11").Copy wkbCrntWorkBook.Sheets("HotelData").Cells(30, Cols)
         wkbCrntWorkBook.Sheets("HotelData").Cells(30, Cols).CurrentRegion.EntireColumn.AutoFit
         wkbSourceBook.Close False
      End If
   End With
End Sub
 
Upvote 0
For the I11/C30 value what is the last col you would want to copy that data to?
 
Upvote 0
I11 should post between C30:N30
N11 between R30:AC30
S11 between AG30:AR30

Hope that helps!
 
Upvote 0
Try
Code:
Cols = Application.CountA(wkbCrntWorkBook.Sheets("HotelData").Range("C30:N30")) + 3
Sheets("Glance").Range("I11").Copy wkbCrntWorkBook.Sheets("HotelData").Cells(30, Cols)
wkbCrntWorkBook.Sheets("HotelData").Cells(30, Cols).CurrentRegion.EntireColumn.AutoFit
Cols = Application.CountA(wkbCrntWorkBook.Sheets("HotelData").Range("R30:AC30")) + 18
Sheets("Glance").Range("N11").Copy wkbCrntWorkBook.Sheets("HotelData").Cells(30, Cols)
wkbCrntWorkBook.Sheets("HotelData").Cells(30, Cols).CurrentRegion.EntireColumn.AutoFit
Cols = Application.CountA(wkbCrntWorkBook.Sheets("HotelData").Range("AG30:AR30")) + [COLOR=#ff0000]??[/COLOR]
Sheets("Glance").Range("S11").Copy wkbCrntWorkBook.Sheets("HotelData").Cells(30, Cols)
wkbCrntWorkBook.Sheets("HotelData").Cells(30, Cols).CurrentRegion.EntireColumn.AutoFit
replace the ?? with whatever column number AG is
 
Upvote 0

Forum statistics

Threads
1,215,650
Messages
6,126,019
Members
449,280
Latest member
Miahr

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