holy macro
If you ever needed a macro to edit the page header of an excel spreadsheet using the currently selected criteria of an autofilter filter within the spreadsheet... then you are pretty lame.
But anyway, here it is:
Sub UpdateHeader()
ActiveSheet.PageSetup.CenterHeader = "&B&11" &
Mid(Range("J1").Parent.AutoFilter.Filters(1).Criteria1, 2)
ActiveSheet.PrintPreview
End Sub
"J1" is the cell where your autofilter filter is found. This also sets the header text to bold and size 11, and then opens a Print Preview.

