Forum Discussion
How to display Dataverse image in a report?
Howdy,
I have a Dataverse table that contains information for all employees. This table also has an image type column which has the user's image.
How do I display this image in a published report? Currently it shows up as follows:
Hi, ValiantKillmore
To display an image from a Dataverse table in a report, you can use the Image control in Power Apps. Here are the steps to do so:
- 1. Open the report in Power Apps.
- 2. Add an Image control to the report canvas.
- 3. Set the Image control's Image property to the URL of the image in the Dataverse table. You can do this by using the Concatenate function with the base URL of your Dataverse environment and the name of the image column in your table. For example, if your base URL is "https://myorg.crm.dynamics.com" and your image column is called "employeeimage", the formula would be: Concatenate("https://myorg.crm.dynamics.com", [employeeimage]).
- 4. Save and publish the report.
This should display the image in the report.
Solved: Displaying images in Dataverse on Power BI - Microsoft Fabric Community
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
2 Replies
- v-zhangti
Community Support
Hi, ValiantKillmore
To display an image from a Dataverse table in a report, you can use the Image control in Power Apps. Here are the steps to do so:
- 1. Open the report in Power Apps.
- 2. Add an Image control to the report canvas.
- 3. Set the Image control's Image property to the URL of the image in the Dataverse table. You can do this by using the Concatenate function with the base URL of your Dataverse environment and the name of the image column in your table. For example, if your base URL is "https://myorg.crm.dynamics.com" and your image column is called "employeeimage", the formula would be: Concatenate("https://myorg.crm.dynamics.com", [employeeimage]).
- 4. Save and publish the report.
This should display the image in the report.
Solved: Displaying images in Dataverse on Power BI - Microsoft Fabric Community
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- ValiantKillmoreNew Member
This seems to have worked.
Thank you so much!