VBA code cannot find sheet name

Tocix

New Member
Joined
Apr 17, 2016
Messages
48
Office Version
  1. 365
Good morning,

I'm trying to get a VBA code that will copy data from sheet Caddy and paste it to destination sheet Analysis. Copy columns A through C from sheet Caddy and paste them to Analysis B through D, starting on row 2. And column D through G, and paste it to L through O. But I'm getting run time error 9 on "Set wsCaddy= ThisWorkbook.Sheets ("Caddy"). I do have the sheet name "Caddy" on the last tab.

VBA Code:
    Dim wsSource As Worksheet
    Dim wsDest As Worksheet
    Dim lastRow As Long

    ' Set references to the source and destination sheets
[COLOR=rgb(226, 80, 65)]    Set wsSource = ThisWorkbook.Sheets("Caddy")[/COLOR]
    Set wsDest = ThisWorkbook.Sheets("Analysis")

    ' Determine the last row with data in column A on the source sheet
    lastRow = wsSource.Cells(wsSource.Rows.Count, "A").End(xlUp).Row

    ' Copy columns A through C from the source sheet
    wsSource.Range("A1:C" & lastRow).Copy
    ' Paste the copied data into the destination sheet starting at row 2, column B
    wsDest.Range("B2").PasteSpecial Paste:=xlPasteValues

    ' Copy columns D through G from the source sheet
    wsSource.Range("D1:G" & lastRow).Copy
    ' Paste the copied data into the destination sheet starting at row 2, column L
    wsDest.Range("L2").PasteSpecial Paste:=xlPasteValues

    ' Clear Clipboard to remove marching ants
    Application.CutCopyMode = False
End Sub
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Is the sheet in the same workbook as the code?
 
Upvote 0
Ok, if you select the Caddy sheet & run this, what does it return?
VBA Code:
Sub Check()
   With ActiveSheet
      MsgBox "|" & .Name & "|" & vbLf & Len(.Name)
   End With
End Sub
 
Upvote 0
Ok, if you select the Caddy sheet & run this, what does it return?
VBA Code:
Sub Check()
   With ActiveSheet
      MsgBox "|" & .Name & "|" & vbLf & Len(.Name)
   End With
End Sub

1712754168287.png
 
Upvote 0
That looks Ok, what does this return
VBA Code:
Sub Check()
   With ActiveSheet
      MsgBox .Parent.Name = ThisWorkbook.Name
   End With
End Sub
 
Upvote 0
In that case I have no idea, as it works for me.
What happens if you use the Codename, rather than the sheet name?
 
Upvote 0
I tried the codename, but it was unsuccessful. Maybe you could assist me in creating fresh code from scratch. I have numerous sheets in a workbook. Starting on row 2, columns B, C, and D, I intended to copy and paste columns A, B, and C from the Caddy sheet to the Analysis sheet. Copy and paste the contents from columns D through G to lines L through O on the analysis sheet. Thanks a bunch for your help.
 
Upvote 0
You said the your "Caddy" sheet is the last sheet in the workbook.
Try it so.
Code:
Sub Maybe()
Dim sh1 As Worksheet, sh2 As Worksheet
Dim lr As Long
Set sh1 = ThisWorkbook.Worksheets("Analysis")
Set sh2 = Sheets(ThisWorkbook.Worksheets.Count)
lr = sh2.Cells(sh2.Rows.Count, 1).End(xlUp).Row
    With sh1
        .Cells(2, 2).Resize(lr, 3).Value = sh2.Cells(1, 1).Resize(lr, 3).Value
        .Cells(2, 12).Resize(lr, 4).Value = sh2.Cells(1, 4).Resize(lr, 4).Value
    End With
End Sub
 
Upvote 1
Solution

Forum statistics

Threads
1,215,206
Messages
6,123,638
Members
449,109
Latest member
Sebas8956

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