Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I'm still very new to this stuff and I'm having a problem detecting the
active sheet. All I seem to accomplish is to activate sheet 2. Obviously I'm using the wrong code here. I'm trying to detect which of 2 sheets (2 or 3) is active and print the correct header for that sheet. I'm not even sure the else statement will work, I haven't got it to go that far! Any light you can shed on this would be great. Thanks! RJH Private Sub Workbook_BeforePrint(Cancel As Boolean) If Worksheets("Sheet2").Activate Then Dim wkSht As Worksheet For Each wkSht In ActiveWindow.SelectedSheets With wkSht.PageSetup .CenterFooter = "&12 " & _ Application.UserName & ", " _ & Format(Now(), "mmmm-dd-yyyy") & " &T" .CenterHeader = "&20 &B" & "" _ & Format("Credit Card Reconciliation Statement" & Chr(10) _ & "Billing Date " & Worksheets("Sheet2").Range("M2")) End With Next wkSht Else For Each wkSht In ActiveWindow.SelectedSheets With wkSht.PageSetup .CenterFooter = "&12 " & _ Application.UserName & ", " _ & Format(Now(), "mmmm-dd-yyyy") & " &T" .CenterHeader = "&20 &B" & "" _ & Format("Credit Card Reconciliation Statement" & Chr(10) _ & "Billing Date " & Worksheets("Sheet2").Range("M2") & "Totals") End With Next wkSht End If End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Copy sheet and make new sheet active | Excel Discussion (Misc queries) | |||
Active Cell Copy And Paste Sheet to Sheet | New Users to Excel | |||
Active sheet | Excel Discussion (Misc queries) | |||
Using the Active cell in one sheet for another sheet | Excel Discussion (Misc queries) | |||
How to make a sheet the active sheet? | Excel Programming |