Quote Originally Posted by ipollasa
That's great - works perfectly, Thanks!

I've cheated with the enforced file naming by using a "project number" as a reference for a range of documents.
VB Code:
  1. Dim PathAndFileName As String
  2. Dim ProjNo As String
  3. ProjNo = frmProjNo.txtProjNo.Value
  4. PathAndFileName = "C:\[I]filepathandname[/I] "
  5. ActiveDocument.SaveAs (PathAndFileName & ProjNo & ".doc")
It's very basic but hey I'm new at this!
Not quite what I was looking for, but thanks anyway