MemphisVBA
Technical User
I have a report that has a few sub-reports and a few labels that help tell the person reading it what they are looking at. When it is viewed as a normal report object inside of Access, it is perfect, however when I export it to Excel (which is the format I need it in) I loose a lot of formatting and especially the text labels.
How can I get some text labels to show up on my exported Excel reports? I understand that there are several shortcomings on the Access reports - like formatting, lines, etc. Especially when dealing with snapshot v. MS Word - but I don't remember having this much trouble going from Access to Excel before.
For the record, here is how I am exporting to Excel:
Thanks in advance for any help or suggestions!
How can I get some text labels to show up on my exported Excel reports? I understand that there are several shortcomings on the Access reports - like formatting, lines, etc. Especially when dealing with snapshot v. MS Word - but I don't remember having this much trouble going from Access to Excel before.
For the record, here is how I am exporting to Excel:
Code:
Dim stDocName As String
stDocName = "Rebate Exception Report"
DoCmd.OutputTo acOutputReport, stDocName, acFormatXLS, "Recon Exception.xls", True
Thanks in advance for any help or suggestions!