1

Using Bot framework V4 is it possible to get a screenshot of powerbi report inside the Microsoft Teams using Azure Blob storage otr just by passing the link of an pbix dynamically?

Mick
  • 2,946
  • 14
  • 19
Sai
  • 91
  • 1
  • 11

2 Answers2

0

In teams, you can press the + : enter image description here

To add a TAB, here you have the option to include a power bi report:

enter image description here

Aldert
  • 4,209
  • 1
  • 9
  • 23
0

As far as I know, it is not possible to programmatically export a Power BI dashboard / graph to an image. If you want to show a Power BI dashboard / graph in Teams via a bot, I would make use of the possibilities to use a tab.

  • Combine your bot with a tab and create a deep link to your tab from the bot. The custom tab included with your bot will receive the context and you can build a web application that loads the right dashboard using Power BI embedded.
Mick
  • 2,946
  • 14
  • 19
  • 1
    @Sai - There are different ways, One is create a web app and pull it inside teams as a tab. The other way is to use the PowerBI tool which is provided inside Teams and it will help you pull the reports/dashboards inside teams. The second question was about bot - There are different ways you can achieve it, one is [Deeplink](https://learn.microsoft.com/en-us/microsoftteams/platform/concepts/deep-links) to tab other way is to show report in [Task Module](https://learn.microsoft.com/en-us/microsoftteams/platform/concepts/task-modules/task-modules-bots) from a Bot. – Abhijit Jul 29 '19 at 09:08