Problem Setting A Worksheet

Ark68

Well-known Member
Joined
Mar 23, 2004
Messages
4,564
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
Please consider this code ...

On workbook Open ...
Code:
Option Explicit
    Public wb_main As Workbook
    Public ws_anraw As Worksheet
    Public ws_anwork As Worksheet
    Public rpt_date As Date

Private Sub Workbook_Open()
Stop
    Dim wscnt As Integer
    Dim i As Integer
    Set wb_main = Workbooks("Data.xlsm")
    wscnt = ActiveWorkbook.Worksheets.Count
    For i = wscnt To 1 Step -1
        If Worksheets(i).Name = "Sheet1" Then
            Application.DisplayAlerts = False
            wb_main.Worksheets(i).Delete
            Application.DisplayAlerts = True
        End If
    Next i
    Set ws_anwork = wb_main.Worksheets("ACTIVE_WORKING")
    
    transfer_raw
End Sub

I am getting a "Variable not defined" error with the object highlighted in the code below.

Rich (BB code):
Sub transfer_raw()
    Dim wbnum As Long
    Dim wb As Workbook
    Dim ws As Worksheet
    wbnum = 0
    For Each wb In Workbooks
        wbnum = wbnum + 1
    Next wb
    Stop
    If wbnum < 2 Then
        MsgBox "There are no raw ActiveNet workbooks open."
    Else
        MsgBox "There are " & wbnum & " open worksheets."
        For Each wb In Workbooks
            If wb.Name Like "active_report*" Then
                Workbooks(wb.Name).Worksheets("Sheet1").Copy Before:=wb_main.Worksheets("PERMITS")
                Stop
                Set ws_anraw = wb_main.Worksheets("Sheet1")
                cleanData
            End If
        Next wb
    End If
End Sub

I have declared wb_main as public in the workbook declarations, and set it in the workbook open module. But it appears to not have carried over.
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
If both procedures are in the same wb, my guess would be that Excel variable scope does not allow that. Maybe if the variable was in a sheet module it would be visible to other sheets, but you're creating it at the workbook module level so perhaps that's the problem. You could test this in the immediate window, or just have the open event pass the workbook or workbook name to the transfer sub.

EDIT - I believe it's because a sheet and a workbook are class modules and scope is restricted to an instance of a class. You should not have this issue if the variable is declared in a standard module. So you should be ok if the wb open event calls a sub in a standard module, and that module creates the variable.
 
Upvote 1
Solution
Hi Micron,
My apologies for the tardiness in acknowledging your reply.
You indeed had the solution. I had to put the declarations and set them in a module. (I hope I got the terminology right.)
 
Upvote 0
Glad I could help & thanks for the recognition!
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,952
Members
449,095
Latest member
nmaske

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