Display images from Business Central in Power BI

This week a colleague asked me if images from Business Central (formerly Dynamics NAV) could also be displayed in a Power BI report and the good news up front, “It works!”

The special challenge here is that Business Central stores the image compressed with additional 4 bytes in a Blob data type (Binary Large Object) in the SQL database. However, for the display in a Power BI report we need a Base64 image – string, which we use as Image-URL.

Thumbnails of the images are stored in the Business Central SQL database in the table “Tenant Media Thumbnails”. We use these smaller images in order to not unnecessarily inflate the dataset and to avoid character length limitations (32766 characters) in Power BI as much as possible.

Generate Data-URI in Power Query

Using a Custom Column, we then perform the following transformations. (read from the inside to the outside)

  1. Remove the first 4 bytes from the Content column
  2. Decompress the result
  3. Convert the decompressed binary result to Base64 text
  4. Concatenate the Base64 text together with the Mime Type to a Data-URI
= "data:" & [Mime Type] & ";base64," 
& Binary.ToText(
    Binary.Decompress( 
        Binary.Range([Content], 4)
    , Compression.Deflate)
, BinaryEncoding.Base64)
Power Query: Custom Column for Data URI Image

Image URL in Power BI report

In order for the Base64 image string to be interpreted and displayed as an image by Power BI, the data category of the column must be changed to “Image URL”.
It is recommended to make the change before displaying the column in Power BI, otherwise the visual will render very long when displaying the long text.

Set data category "Image URL" for the image column

Veröffentlicht von

Marcus Wegener

Marcus Wegener

Marcus Wegener ist Anwendungsentwickler für Business Intelligence und erstellt Lösungen, mit denen sich große Datenmengen schnell analysieren lassen. Kunden nutzen seine Lösungen, um die Vergangenheit zu analysieren, die Gegenwart zu steuern und die Zukunft zu planen, um damit mehr Erfolg zu generieren. Dabei ist seine einzigartige Kombination aus Wissen und Auffassungsgabe ein Garant für ihren Erfolg.

4 Gedanken zu „Display images from Business Central in Power BI“

      1. Hi, I have same need of getting images from BC to Power BI but all the information is in the cloud.

        Would you mind try to replicate this but with an API and show how it could be done?

        Best regards, Isabelle

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert

I accept that my given data and my IP address is sent to a server in the USA only for the purpose of spam prevention through the Akismet program.More information on Akismet and GDPR.