Code doesn't work when switching tabs

WilliamA

New Member
Joined
Aug 30, 2022
Messages
9
Office Version
  1. 365
Platform
  1. Windows
Hello,

I have VBA code which copies information from one spreadsheet to another. The original spreadsheet has many tabs, and when I use the code in it's current form, it throws this error when I try to copy over the columns from a tab that's different to the one that the spreadsheet opens on.

1666923091314.png


Is it possible to update the code to allow users to select columns from whichever tab.

VBA Code:
Sub copy_data()

Dim data_wb As Workbook
Dim target_wb As Workbook
Dim file_name As Variant
Dim header_range(100) As Range
Dim last_row As Long
Dim col_number As Long
Dim col_letter As String
Dim counter As Long
Dim quantity As Long

'select workbook
file_name = Application.GetOpenFilename(Title:="Choose a target workbook")

If file_name <> False Then

    'create a new target workbook
    Set target_wb = Application.Workbooks.Add

    'open workbook with the data
    Set data_wb = Application.Workbooks.Open(file_name)
        
    'get quantity to create loop
    quantity = _
    InputBox("How many columns do you want to copy?")
    
    'loop
    For counter = 1 To quantity
    
        'select header range
        Set header_range(counter) = _
        Application.InputBox("Select the " & counter & "º column you want to copy", Type:=8)
        
        'get last row and col letter
        col_number = header_range(counter).Column
        last_row = Cells(Rows.Count, col_number).End(xlUp).Row
        col_letter = Split(Cells(1, col_number).Address(True, False), "$")(0)

        'copy from data_wb
        Range(header_range(counter), Range(col_letter & last_row)).Copy
        
        'paste in target_wb
        target_wb.Sheets("Sheet1").Cells(1, counter).PasteSpecial xlPasteValues
        
        
    Next counter
    
    data_wb.Close
    
    If Not target_wb.Saved Then
        If MsgBox("Do you want to save the file?", vbYesNo, "Save?") = vbYes Then
        Rows("1:9").Delete
        target_wb.Save
        End If
    End If

End If

target_wb.Close

End Sub
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Your problem is unqualified references like this:
VBA Code:
Range(header_range(counter))
Range refers to the ActiveSheet. So if header_range(counter) is in another worksheet, you'll get a run time error 1004.

I think this is what you're wanting to do?
Code:
For counter = 1 To quantity
    Set header_range(counter) = Application.InputBox("Select the " & counter & "º column you want to copy", Type:=8)
    With header_range(counter)
        last_row = .Parent.Cells(Rows.Count, .Column).End(xlUp).Row
        .Resize(last_row - .Row + 1).Copy
        Sheets("Sheet1").Cells(1, counter).PasteSpecial xlPasteValues
    End With
Next counter
 
Upvote 0
Your problem is unqualified references like this:
VBA Code:
Range(header_range(counter))
Range refers to the ActiveSheet. So if header_range(counter) is in another worksheet, you'll get a run time error 1004.

I think this is what you're wanting to do?
Code:
For counter = 1 To quantity
    Set header_range(counter) = Application.InputBox("Select the " & counter & "º column you want to copy", Type:=8)
    With header_range(counter)
        last_row = .Parent.Cells(Rows.Count, .Column).End(xlUp).Row
        .Resize(last_row - .Row + 1).Copy
        Sheets("Sheet1").Cells(1, counter).PasteSpecial xlPasteValues
    End With
Next counter

Hi,

Thanks for looking into this.

I replaced the code, and it allows me to select columns from another worksheet without returning the error, but it stopped copying over the columns to the new spreadsheet.

VBA Code:
Sub copy_data()

Dim data_wb As Workbook
Dim target_wb As Workbook
Dim file_name As Variant
Dim header_range(100) As Range
Dim last_row As Long
Dim col_number As Long
Dim col_letter As String
Dim counter As Long
Dim quantity As Long

'select workbook
file_name = Application.GetOpenFilename(Title:="Choose a target workbook")

If file_name <> False Then

    'create a new target workbook
    Set target_wb = Application.Workbooks.Add

    'open workbook with the data
    Set data_wb = Application.Workbooks.Open(file_name)
        
    'get quantity to create loop
    quantity = _
    InputBox("How many columns do you want to copy?")
    
    'loop
    For counter = 1 To quantity
    
        'select header range
        Set header_range(counter) = _
        Application.InputBox("Select the " & counter & "º column you want to copy", Type:=8)
        
        'get last row and col letter
        With header_range(counter)
            last_row = .Parent.Cells(Rows.Count, .Column).End(xlUp).Row

        'copy from data_wb
        .Resize(last_row - .Row + 1).Copy
        
        'paste in target_wb
        Sheets("Sheet1").Cells(1, counter).PasteSpecial xlPasteValues

    End With
    
    Next counter
    
    data_wb.Close
    
    If Not target_wb.Saved Then
        If MsgBox("Do you want to save the file?", vbYesNo, "Save?") = vbYes Then
        Rows("1:9").Delete
        target_wb.Save
        End If
    End If

End If

target_wb.Close

End Sub
 
Upvote 0
Just a quick guess ...

Rich (BB code):
'paste in target_wb
target_wb.Sheets("Sheet1").Cells(1, counter).PasteSpecial xlPasteValues
 
Upvote 0
Solution

Forum statistics

Threads
1,214,649
Messages
6,120,733
Members
448,987
Latest member
marion_davis

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