I recently migrated our SQL Reporting Services from 2008 to 2012.
We have a number of subscriptions setup that go to managers and most of them like to receive the report as an Excel Spreadsheet.
These seem to get delivered as an email, that is then attached to another email so the manager received an email with a .msg they then have to open, to then open the excel spreadsheet.
Is there anyway to change this behaviour so it is just the email with the excel spreadsheet on it.
Related
I have a monthly report which I send to users every month using SSRS subscriptions (delivered by email.) My requirement now is to attach one more report as attachment along with Monthly report.
So the user has to receive Monthly report and attachment of other report.
Is it possible to attach/send other report file along with an SSRS subscription delivered by email?
No, it's not possible to attach another file with an e-mail subscription from SSRS.
I think the best way would be to create a subscription to put the file in a folder and then create a stored procedure that creates an email and attaches the files.
Here's some more detail on the sp_send_email:
https://dba.stackexchange.com/questions/99326/sp-send-dbmail-stored-procedure-send-with-attachment
SQL sp_send_dbmail send email with attachment, pdf file got corrupted
https://learn.microsoft.com/en-us/sql/relational-databases/system-stored-procedures/sp-send-dbmail-transact-sql?view=sql-server-ver15
We are using data driven subscription for reports. Reports with PDF as attachment is working, but reports with Excel as attachment is not working.
Use EXCELOPENXML as the render format for Excel. This works for me with Data Driven subscriptions.
https://learn.microsoft.com/en-us/sql/reporting-services/report-builder/exporting-to-microsoft-excel-report-builder-and-ssrs?view=sql-server-ver15
The EXCELOPENXML extension defines the Excel renderer for current (.xlsx) Excel files. The EXCEL extension defines the Excel 2003 version. Visible = "false" indicates the Excel 2003 renderer is hidden.
I have to migrate a Microsoft Excel 2010 file to Google Sheets. This file as a userform that allows a user to reply to a few questions. Those answers then goes to the excel sheet and pass by a various number of manipulations before giving back the results to the user.
I created a Google Forms and I migrated my Excel sheets to Google Sheets.On completion of the form, GForms write the information in GSheets. But then I'm stuck to bring back the results to the user.
On completion of the form, GForms write the information in GSheets, but I don't know how to bring back the results to the user that completed the form.It can be by mail, from a new GSheets, directly in GForms or else.
I've got SSRS reports that have email subscriptions. So report will run every month and send a copy to certain email address. User says they have deleted the message with report by mistake. Is there a way of getting that exact report that went to them last month? Is there a copy saved somewhere in report server?
Thanks
No. SSRS does not keep a copy. but if the data is static for that period, you could rerun with same parameters to get the same report
I am currently working on a simple report in Microsoft Report Builder 3.0 but it needs to be exported to Excel and sent to different vendors.
Is it possible to Export a report into individual Excel Spreadsheets, not pages of one Excel Spreadsheet?
Or if this is not possible, what would the best approach be?
This can be done after you have deployed your report to a Report Manager or SharePoint portal - it's called a Data Driven Subscription:
http://technet.microsoft.com/en-us/library/ms159150.aspx