VBA TO COPY DATA TO NEXT SHEET!

SouthernGent0327

New Member
Joined
Jan 30, 2021
Messages
14
Office Version
  1. 365
Platform
  1. Windows
Good Afternoon,

I have a workbook which opens to a userform for the user to enter name and year. Once entered the submit button copies a master sheet for 12 months with the entered year and hides the master sheet. My problem is I need a macro which can copy data from a cell on the ActiveSheet (which ever month it may be to the very next month) in a different cell. Since the worksheet tab names always change I have tried to reference the sheet code name in the following manner:

VBA Code:
Sub TransferData()

If ActiveSheet = Sheet3 Then
    Sheet3.Range("J16").Copy
    Sheet4.Activate
    Sheet4.Range("J15").xlPasteValues
End If

End Sub

This code generates Object Doesn't Support Error and I am not sure why. My thought was I would just create this same code for each sheet with a button to transfer data to the next sheet, but I can't figure out how to accomplish this task. Please help!! Thanks in advance.
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
try:

VBA Code:
If ActiveSheet.CodeName = Sheet3 Then
 
Upvote 0
try:

VBA Code:
If ActiveSheet.CodeName = Sheet3 Then
Thank you so much for the help, I changed it to:

VBA Code:
If ActiveSheet.CodeName = Sheet3 Then
    Sheet3.Range("J16").Copy
    Sheet4.Activate
    Sheet4.Range("J15").xlPasteValues
End If

But I am still getting the Object Doesn't Support Error.
 
Upvote 0
How about
VBA Code:
If ActiveSheet.CodeName = Sheet3 Then
    Sheet4.Range("J15").Value = Sheet3.Range("J16").Value
End If
 
Upvote 0
How about
VBA Code:
If ActiveSheet.CodeName = Sheet3 Then
    Sheet4.Range("J15").Value = Sheet3.Range("J16").Value
End If

I tried this as well and still get the Object Support Error. Is it perhaps because of the way the sheet copies pages? Here is the code for copying the pages:
VBA Code:
 Dim J As Integer
    Dim K As Integer
    Dim sMo(12) As String
    Dim D As Integer
    Dim ws As Worksheet
    Dim S As String
    Dim sh As Worksheet
    
    Set ws = ThisWorkbook.Worksheets("MASTER")
    
    S = DTForm.tbSite.Value
    
    ws.Range("A1") = S
    
    D = DTForm.tbYear.Value

    sMo(1) = "October" & Space(1) & D
    sMo(2) = "November" & Space(1) & D
    sMo(3) = "December" & Space(1) & D
    sMo(4) = "January" & Space(1) & D + 1
    sMo(5) = "February" & Space(1) & D + 1
    sMo(6) = "March" & Space(1) & D + 1
    sMo(7) = "April" & Space(1) & D + 1
    sMo(8) = "May" & Space(1) & D + 1
    sMo(9) = "June" & Space(1) & D + 1
    sMo(10) = "July" & Space(1) & D + 1
    sMo(11) = "August" & Space(1) & D + 1
    sMo(12) = "September" & Space(1) & D + 1

    For J = 1 To 12
        If J <= Sheets.Count Then
            If Left(Sheets(J).Name, 5) = "Sheet" Then
                Sheets(J).Name = sMo(J)
                Sheets(J).Visible = True
            Else
                ws.Copy After:=Sheets(Sheets.Count)
                ActiveSheet.Name = sMo(J)
            End If
        Else
            ws.Copy After:=Sheets(Sheets.Count)
            ActiveSheet.Name = sMo(J)
        End If
    Next J

    For J = 1 To 12
        If Sheets(J).Name <> sMo(J) Then
            For K = J + 1 To Sheets.Count
                If Sheets(K).Name = sMo(J) Then
                    Sheets(K).Move Before:=Sheets(J)
                End If
            Next K
        End If
    Next J
    Sheets(1).Activate
           
ThisWorkbook.Worksheets("MASTER").Visible = False

Here is the most recent code I tried:
Code:

I have attached a picture of the error message, the document only opens to the master page, could this have something to do with it not working properly. Thanks again for the help.
 

Attachments

  • Capture.PNG
    Capture.PNG
    7.3 KB · Views: 5
Upvote 0
Which line of your code gives the error?
 
Upvote 0
I tried this as well and still get the Object Support Error. Is it perhaps because of the way the sheet copies pages? Here is the code for copying the pages:
VBA Code:
Dim J As Integer
    Dim K As Integer
    Dim sMo(12) As String
    Dim D As Integer
    Dim ws As Worksheet
    Dim S As String
    Dim sh As Worksheet
  
    Set ws = ThisWorkbook.Worksheets("MASTER")
  
    S = DTForm.tbSite.Value
  
    ws.Range("A1") = S
  
    D = DTForm.tbYear.Value

    sMo(1) = "October" & Space(1) & D
    sMo(2) = "November" & Space(1) & D
    sMo(3) = "December" & Space(1) & D
    sMo(4) = "January" & Space(1) & D + 1
    sMo(5) = "February" & Space(1) & D + 1
    sMo(6) = "March" & Space(1) & D + 1
    sMo(7) = "April" & Space(1) & D + 1
    sMo(8) = "May" & Space(1) & D + 1
    sMo(9) = "June" & Space(1) & D + 1
    sMo(10) = "July" & Space(1) & D + 1
    sMo(11) = "August" & Space(1) & D + 1
    sMo(12) = "September" & Space(1) & D + 1

    For J = 1 To 12
        If J <= Sheets.Count Then
            If Left(Sheets(J).Name, 5) = "Sheet" Then
                Sheets(J).Name = sMo(J)
                Sheets(J).Visible = True
            Else
                ws.Copy After:=Sheets(Sheets.Count)
                ActiveSheet.Name = sMo(J)
            End If
        Else
            ws.Copy After:=Sheets(Sheets.Count)
            ActiveSheet.Name = sMo(J)
        End If
    Next J

    For J = 1 To 12
        If Sheets(J).Name <> sMo(J) Then
            For K = J + 1 To Sheets.Count
                If Sheets(K).Name = sMo(J) Then
                    Sheets(K).Move Before:=Sheets(J)
                End If
            Next K
        End If
    Next J
    Sheets(1).Activate
         
ThisWorkbook.Worksheets("MASTER").Visible = False

Here is the most recent code I tried:
Code:

I have attached a picture of the error message, the document only opens to the master page, could this have something to do with it not working properly. Thanks again for the help.

Which line of your code gives the error?
The larger block of code works well, I only get the error when I use the following:

If ActiveSheet.CodeName = Sheet3 Then
Sheet4.Activate
Sheet4.Range("J15").Value = Sheet3.Range("J16").Value
End If
 
Upvote 0
Yes but which line is highlighted if you click debug?
 
Upvote 0
Yes but which line is highlighted if you click debug?
Sorry, understood, the following line is highlighted:

VBA Code:
[B][U]If ActiveSheet.CodeName = Sheet3 Then[/U][/B]
    Sheet4.Activate
    Sheet4.Range("J15").Value = Sheet3.Range("J16").Value
End If
 
Upvote 0

Forum statistics

Threads
1,215,032
Messages
6,122,772
Members
449,095
Latest member
m_smith_solihull

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