Report to Excel format

B

Bob Vance

Is it possible to send this report to excel format?
Case "MonthlyPaid"

savRepName = "rptGenericReport"
savFileName = "Montly Paid.rtf"
Me.Form.Visible = False
DoCmd.OpenReport savRepName, acViewPreview, , , , Me.OpenArgs
acFormatrtf, savFileName, True
 
Top