View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Barb Reinhardt Barb Reinhardt is offline
external usenet poster
 
Posts: 3,355
Default Assistance with variables defined outside of macro

I have the following (very abbreviated macro)

Sub AllSummary()
Dim Tabname As String
Tabname = "SUMMARY (A)"
Call SheetSummary
End Sub

What do I need to do within SheetSummary so that it recognizes the Tabname
defined here?