Hello (again),
I quickly want to preface this by saying you all really have no idea how much I appreciate all the help I have received from this forum. You really are all just the best kind of people and are helping me more than you'll ever realize. Thank you!
I have a report that I have tried using OutputTo to export to excel:
Which is fine and all, but the way the report is setup it's ugly and almost un readable. These is basically going to be used by extremely computer illiterate "higher-ups" and that format just isn't going to do. In a bout of frustration I just hit Control A, Copy and pasted it into a blank excel document and WOW! Perfect! Exactly what I need.
I can't find it anywhere but... oh god... someone please tell me there is a procedural way to do this in VBA, but telling them to select all and copy paste isn't going to fly. I know I know.
Or even sending me to a place with more information.. I'm just failing at my googling here. Even if there is a way to format that "OutputTo" data before it hits the screen would be an OK last resort.
I quickly want to preface this by saying you all really have no idea how much I appreciate all the help I have received from this forum. You really are all just the best kind of people and are helping me more than you'll ever realize. Thank you!
I have a report that I have tried using OutputTo to export to excel:
Code:
DoCmd.OutputTo acOutputReport, "rptHourlyPercentage", acFormatXLS, , True
I can't find it anywhere but... oh god... someone please tell me there is a procedural way to do this in VBA, but telling them to select all and copy paste isn't going to fly. I know I know.
Or even sending me to a place with more information.. I'm just failing at my googling here. Even if there is a way to format that "OutputTo" data before it hits the screen would be an OK last resort.
Comment