You could change the section in the code to
Code:
With Dialogs(wdDialogFileSaveAs)
.Name = "V:\Inspections\2018\" & strName
.Show
End With
or you could replace that with
Code:
ActiveDocument.SaveAs2 "V:\Inspections\2018\" & strName
which will save the file without displaying the dialog, but it will overwrite an existing file of the same name and will crash if the folder doesn't exist.
You will find CreateFolders and FileNameUnique code on my web site to overcome these issues.