I'm getting an error anytime I try to SaveAs a template or template macro enabled format. Anyone seeing this issue?
Sub ScratchMacro()
'A basic Word macro coded by Greg Maxey, http://gregmaxey.com/word_tips.html, 6/23/2018
On Error GoTo ErrHandler
   ActiveDocument.SaveAs2 FileName:="Test", FileFormat:=wdFormatXMLTemplate
   ActiveDocument.SaveAs2 FileName:="Test", FileFormat:=14
   ActiveDocument.SaveAs2 FileName:="Test", FileFormat:=wdFormatXMLTemplateMacroEnabled
   ActiveDocument.SaveAs2 FileName:="Test", FileFormat:=15
lbl_Exit:
  Exit Sub
ErrHandler:
  MsgBox Err.Number & " " & Err.Description
  Resume Next
End Sub