Skip to main content

How to Add My Power BI Report in My PowerPoint Presentation?

Had a great week after conducting two-day sessions on Data Warehousing and How to do Business Intelligence with Microsoft Power BI. During the sessions, I got an interesting question from the audience. The question was “how its possible to show the Power BI report or visuals in my Powerpoint slides, at the same time the data need to be up-to-date same as in report”. I love these sort of questions and find solutions because these are real-world problems they have. I thought to write a simple post to address that problem, and in this post, I explain how to achieve it.
Pre-requisites
You have already Power BI report created and published to the Power BI service. If you missed how to do it read this blog. If your source is a file like Excel or CSV the deployment is even simple. You don't want to worry about to configure the gateway and you can simply click Publish and publish your report.

Steps to Follow
Open the MS PowerPoint and go to Insert tab and My-Addins

It will open the Office Add-ins marketplace. Search for PowerBI. You will see an addin Power BI Tiles. Click the Add button and install it in your PowerPoint. (this is a custom Addin by PowerBITiles)

Once you installed the add-in will be like this in your PowerPoint slide. In this case, you have to choose either from Power BI or from a Public report. In here I'm selecting From Power BI report option because I want to see my pre-deployed report content to see in my PowerPoint.

It will open the Web browser and ask you to provide AD credentials to sign-in to the Power BI service.

Next window, its ask to authorize to perform a set of actions as below. Basically, view reports datasets and the content you have in your PBI service.

Once you accept, it will close the browser window and ur PowerPoint add-in will start to display the Dashboards and reports content you have in your service. Woooaaah !.. is it this much simple. Hmmm!

Next stem, you know, the only thing you have to do, select the dashboard or report you want to display in your PowerPoint slide.
I selected one of the simple report I did to visualize attendance for a conference from various locations around the globe.

It is wonderful, Because, it is interactive same as other PowerBI reports. So, this gonna be an awesome way to present your analysis to your clients or top management.

There is an option to apply filters below. However, it did not work properly in my environment.

Similarly, in the bottom menu, there is an option to refresh data. I have  to give a try a full round of refresh the data in the source, then my Power BI report and refresh the PowerPoint Addin finally. Hope you enjoyed this by learning how to use PowerBI addin to visualize your power BI report content in the PowerPoint. Please leave a comment below what do you think on this option and how it worked for your scenario. I'm happy to hear. Cheers! 😊

Comments

  1. This comment has been removed by the author.

    ReplyDelete
  2. very nice and provide me informative content thanks for sharing for more information Looking for the best Business Intelligence reporting Services

    ReplyDelete

Post a Comment

Popular posts from this blog

Get Started with Azure Machine Learning

Azure Machine Learning is a Microsoft cloud solution which allow us to do end-to-end experiments using the samples, experiments provided. Further, it allows us to write custom algorithms using popular data science languages like R and Python.  Lets start to create preview account on Azure and create Azure Machine Learning Experiment workspace. Microsoft gives 30 days trial period for free to do experiments on Azure. You can start to create an Azure account from here. When you sign-up you might need to provide credit card details that only for validate the user. As far as I know we only need to pay if we are going to upgrade the free subscription for Pay-as-you-go model. Lets start to create a machine learning experimentation. For that click on left down below "More services" and from the search bar, type "Machine Learning". Then click the Machine Learning Experimentation in order to create new environment. Then it will open new blades to provide d...

How to Create a Date Table in Few Steps Using Power BI

Calendar Dimension or Calendar Table is one of the crucial table in a Power BI model. I never have seen any data warehouse data model which does not have a Calendar table so far in my development. Because, when it comes to data warehousing or dimension modeling you may storing various business processes or events as Facts. So those events anyway occur in particular date or time. So simply there wouldn’t be a Power BI data model without a date table. In this post, I’m going to share with you how to create a date table within few steps. Actually, there are two DAX measures which we can use to create a date table. Calendar(DAX) and CalendarAuto(Auto). Calendar(DAX) = You can pass start date and End date as parameters you need to create date table. CalendarAuto(DAX) = You can use this function without passing any parameter. Then it will generate the dates based on your data model dates.  You can simply copy the below DAX code and paste in your Power BI Desktop DAX e...