How do I insert the Copyright symbol in the footer? Many thanks.
D David Billigmeier Dec 20, 2005 #3 While editing your footer (<View> <Header and Footer>) hold ALT and type 0169.
G Gary''s Student Dec 20, 2005 #4 This little bit of VBA can enter the symbol in the footer: Sub Macro1() With ActiveSheet.PageSetup .LeftFooter = Chr(169) End With End Sub
This little bit of VBA can enter the symbol in the footer: Sub Macro1() With ActiveSheet.PageSetup .LeftFooter = Chr(169) End With End Sub