Hi,
I need to show the SharePoint images in Power BI paginated report(RDL). Authentication is required to access my SharePoint images. I am not able to show the SharePoint images in the Paginated report. The same SharePoint images could be shown in Power BI but why it's not possible in the Paginated report. I can't place these SharePoint images in the public folder as there is a security concern. Can you help me to fix this issue? @amitchandak @Greg_Deckler
Solved! Go to Solution.
Hi @barathirajavi55,
I suppose report server reports may use different authorizations that were different from the common power bi service reports.
In my opinion, I'd like to suggest you use the root link of images(not include additional authorizations or redirection) to help render these images.
In addition, you can also try to use the power bi service dataset of the report you mentioned as the source or paginated report, then it should not require the additional authorizations.
Regards,
Xiaoxin Sheng
Hi,
To show the images in paginated report, you need to convert the sharepoint images in base64 format.
Steps:
1. get the images (Binary format) from sharepoint in power bi
2. Then convert this to base64 (by changing the datatype to text)
3. if the image is big, you need to splite this base64 column by 32766 char as power bi has the limitation to read characters in a single cell.
4. This splitted columns need to be combined in Pagined report using below script
=System.Convert.FromBase64String(Splitted column1 + Splitted column 2)
did you ever figure out how to resolve this issue?
Hi,
To show the images in paginated report, you need to convert the sharepoint images in base64 format.
Steps:
1. get the images (Binary format) from sharepoint in power bi
2. Then convert this to base64 (by changing the datatype to text)
3. if the image is big, you need to splite this base64 column by 32766 char as power bi has the limitation to read characters in a single cell.
4. This splitted columns need to be combined in Pagined report using below script
=System.Convert.FromBase64String(Splitted column1 + Splitted column 2)
Hi, this is working if I resize the image below 32. How to split base 64 text in powerBI?
that worked, thank you very much for the information
I am having the same issue. I created a URL image measure in PBI and published up to the service. The images will appear as they should.
When i use the same measure or column from the power bi dataset in paginated reports, the images will not come through.
Hi @barathirajavi55,
I suppose report server reports may use different authorizations that were different from the common power bi service reports.
In my opinion, I'd like to suggest you use the root link of images(not include additional authorizations or redirection) to help render these images.
In addition, you can also try to use the power bi service dataset of the report you mentioned as the source or paginated report, then it should not require the additional authorizations.
Regards,
Xiaoxin Sheng
User | Count |
---|---|
4 | |
2 | |
1 | |
1 | |
1 |
User | Count |
---|---|
8 | |
7 | |
5 | |
4 | |
3 |