0
votes

I have a summary report and a detail report where I've added an action to the summary report allowing the user to click and go to the detail report. When you click on the summary report to drill through in the browser, the detailed report renders fine. When you export to excel and try the same action, a message pops up saying "Cannot locate the internet server or proxy server". I've configured my SSRS instance with a SSL certificate but the link when clicking from Excel isn't https:

http://InstanceName/ReportServer?%2FMyFolderName%2FReportName&Param=ParamValue&rs%3AFormat=Excel&rs%3AParameterLanguage=

The action is configured like this:

enter image description here

I've tried looking at settings in BIDS and Report Server Configuration Manager but I'm not seeing anything.

Why is it working when I click on the field in my browser but not when exported to Excel and how can I fix this / get the correct URL to appear as the link in Excel?

1
Can you edit your question and show how the Action is configuredAlan Schofield
Hi Alan, I've added an image of the actionJayVeeVee

1 Answers

0
votes

If you are exporting the report to Excel then it's better to set the Action to be "Go to URL".

Then in the "Select URL" field use an expression something like

=Globals.ReportServerUrl
+ "?/MyFoldderName/Releases+by+Agent+Detail" 
+ "&ReleaseTechnician=" + cStr(Fields!ReleaseTechnician.Value)
+ "&rc:Parameters=Collapsed"

I can't test the above expression for obvious reasons but you should be able to work out any issues.

Using this method ensures that the link will work in both the web portal and once exported to Excel