It's a clunky two step solution but I would suggest encapsulating a function that first saves the report in rtf format and then via automation invoke Word to import the rtf, save it as a doc file, delete the old rtf and voila you are done! Since you can bring up word invisibly so nobody will see these extra steps. There should be plenty of examples of word automation. To get you started with code for invoking Word I found this example by Dashley elsewhere on Tek-Tips.
Ted
--------------------------------
Open an instance of Word within app
thread222-710628
Public wrdapp As Word.Application
Public wrddoc As Word.Document
Public wrdtbl As Word.Table
Public wrdsel As Word.Selection
Private Sub Command1_Click()
Dim wrdtbl As Table
Set wrdapp = CreateObject("word.application"

Set wrddoc = wrdapp.Documents.Add
Set wrdsel = wrdapp.Selection
wrdapp.Documents.Open ("C:\misc.doc"

wrddoc.ActiveWindow.Visible = True
wrdsel.Text = "My word document "
wrddoc.SaveAs ("c:\misc1.doc"
End Sub
Private Sub Command2_Click()
wrdapp.Quit
Set wrdapp = Nothing
Set wrddoc = Nothing
End Sub
Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
wrdapp.Quit
Set wrdapp = Nothing
Set wrddoc = Nothing
End Sub