View Single Post
 
Old 04-16-2022, 02:10 PM
Charles Kenyon Charles Kenyon is offline Windows 10 Office 2019
Moderator
 
Join Date: Mar 2012
Location: Sun Prairie, Wisconsin
Posts: 9,536
Charles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant future
Default

That is correct. Otherwise here is a short macro that you could attach to a keyboard shortcut.
Code:
Sub NormalTemplateSave()
    ' Charles Kenyon
    ' 16 March 2022
    ' Save the Normal Template
    Application.ScreenUpdating = False
    Application.NormalTemplate.OpenAsDocument
    ActiveDocument.Saved = False
    ActiveDocument.Close SaveChanges:=True
    Application.ScreenUpdating = True
    MsgBox "The Normal template has been saved."
    Application.ScreenRefresh
End Sub

Reply With Quote