I am trying to pass information from an ssrs report to an excel spreadsheet. What I want to accomplish is clicking a link in an ssrs report that opens up an excel spreadsheet, but also populates a cell in that excel spreadsheet with a value from the ssrs report where it was opened from.
I have achieved opening the excel spreadsheet file from the ssrs report by adding an action to a textbox and using the Go to URL Action
=Fields!True_Path.Value & "\" & Fields!DOCUMENT_ID.Value
However, i want to pass the value of the textbox itself to the excel spread sheet. Is this possible? If so how could one accomplish this task? Any methods / suggestions are welcome!