The file name that you save to is simply a text string at the point that you do the save so you can build the text string up to contain anything you like.
( Well you can if you do it in VB code - I'm not so sure if you can do anything as fancy in
Macros. There again I don't know anyone who can remember far enough back in history to still be using macros in Access ! )
In code
Set up string variables
Dim strServerPath As String
Dim strFileName As String
Dim strYear As String
Dim strMonth As String
Dim strDays As String
strServerPath = "\\ServerName\FolderName\SubFolderName\"
strYear = Format(Date(),"yyyy"

strMonth = Format(Date(),"mm"

strDays = Format(Date(),"dd"
strServerPath = strServerPath & strYear & "\"
strFileName = "WordExport" & strMonth & strDays
' Then go and do the File Save functionality
"WordExport" can also be made up of other text as you need
The code above also sub sorts the files into distinct folders by year.
You'll need code to check that the folders actually exist as each new year starts if you want to go this route.
Otherwise just insert strYear in the strFileName build up before strMonth
( BTW by using the date order Year,Month,Day the files will automatically sort in the correct chronological order when you view them in WinExplorer of the Word Open dialog box. )
'ope-that-'elps.
G LS
spsinkNOJUNK@yahoo.co.uk
Remove the NOJUNK to use.