ADAMC
Well-known Member
- Joined
- Mar 20, 2007
- Messages
- 1,169
- Office Version
- 2013
- Platform
- Windows
Hi all
This is a long shot and i never use word and now i could do with a macro to come to my rescue
In excel i know its possible to save a workbook as a cell value, something like
Anyway due to a recent failed audit i now have to save all word docs in a set format: Like author published date review date.doc
Author/Published and review date are always in the same place on each doc, so my question is does anyone know if there is a macro which can save word docs based on content:
Thisworddoc.saveas filename: Page1 column one blah blah....?
Any help greatly apppreciated i have hundreds of docs to change file name. Any excel solutions perhaps also greatly welcome
Perhaps its not possible....?
Thanks for any input!!!!
This is a long shot and i never use word and now i could do with a macro to come to my rescue
In excel i know its possible to save a workbook as a cell value, something like
Code:
Sub SaveAsA1()
ThisFile = Range("A1").Value
ActiveWorkbook.SaveAs Filename:=ThisFile
End Sub
Anyway due to a recent failed audit i now have to save all word docs in a set format: Like author published date review date.doc
Author/Published and review date are always in the same place on each doc, so my question is does anyone know if there is a macro which can save word docs based on content:
Thisworddoc.saveas filename: Page1 column one blah blah....?
Any help greatly apppreciated i have hundreds of docs to change file name. Any excel solutions perhaps also greatly welcome
Perhaps its not possible....?
Thanks for any input!!!!