Is there an easy way to get the report data in a format suitable for download into Excel? No headers, footers, subtotals; just one record per row. I am finding myself attempting to re-write reports in a BAQ but it seems like since the logic is already there, we should be able somehow to access the data.
The downloadable Excel versions have a whole bunch of empty rows and it takes forever to go through and remove them just to use the data.
Anyone have an easy way to get at the report data without rewriting everything in a BAQ?
Is it an SSRS Report? If so the Data Exists in the Reporting DB, all you have to do is write a Query using the GUID generated by the system when you run the report. Most reports you can run with a “Generate Only” option which will generate the data but not run the SSRS Report.
In some cases, we just copied and modified the Standard SSRS report so that it would not have multiple blank rows. One cause for it is field size & alignment, by correcting it you can then use the Excel option. We actually have Report Styles called ‘Excel Safe!’
Also, we found that CSV works better than Excel. If there are totals, you get a lot more columns but at least you don’t get the extra blank lines and two-line entries.
Also, I don’t do custom reports any more - only a dashboard. The users can cut and paste to excel for a print out.
I have not, that’s basically what I was asking. I didn’t know how the external BAQ would work with the GUID. Is there a table that can be look at with a parameter to get the GUID? Does each report have it’s own table? My knowledge of external BAQ’s is pretty much none so far, something that I would like to learn soon.
That’s what I was wondering, how do you set up the fields on one large system table?
If each has it’s own though, you would have to set up a new BAQ for each report, but as long as you are looking at the same report table, you should be able to make some sense out of it right?
Right … this is too hairy for that solution, I take it back. I recommend you write a simple version of the SSRS Report that is formatted for exporting as CSV / XL.