I'm stuck.... I want to use VB to add a Header before it prints. Here is my code, but I print and it doesn't work... IFSPB & IFSPB are my sheet names... I must be overlooking something because this seems like it should work.... Can anyone help? I'd really appreciate it!
Code:
Private Sub Workbook_BeforePrint(Cancel As Boolean)
IFSPB.FirstPage.LeftHeader.Text = vbCr & "&""Times New Roman,bold""&12" & "Child's Name: " & Worksheets("IFSPA").Range("M10").Value
End Sub