Forum Discussion

liewgm's avatar
liewgm
Frequent Visitor
8 years ago
Solved

How to Access Files Uploaded to Report Server Directly?

Hi,   I have PBI Report Server set up and running fine. Question is how do I access the files uploaded to the Report Server directly?   E.g. Pass an URL of an uploaded Excel (http://myServer/abc....
  • Anonymous's avatar
    Anonymous
    8 years ago

    The file is stored as a binary object in the Report Server database. The Report Server API will allow you to open the file directly within Excel but not save it back.

     

    To open the file, you'll need to find the GUID of your file, and put it into the following API call:

     

    http://<your report server>/reports/api/v2.0/Resources(<your excel file's guid>)/Content/$value

     

    Then open Excel and paste that URL into the File->Open window.

     

    You will have to manually save and re-upload the file to store any changes.