-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPowerBI.html
More file actions
26 lines (25 loc) · 1.07 KB
/
PowerBI.html
File metadata and controls
26 lines (25 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Embedded Power BI</title>
</head>
<body>
<div>
<h1>Power BI</h1>
<p>This is as demo for embedding Power BI reports into a .NET MVC Web App through an iframe</p>
</div>
<div>
<div>
<h2>Instructions</h2>
<ul>
<li>Power BI Pro is required, or at least a trail. Report needs to be published to Power BI online.</li>
<li>Then from Power BI online go to the File menu and choose 'Embed'. This will generate a url and a html iframe tag</li>
<li>The url can just be pasted in any browser and the report will be generated</li>
<li>The tag is used to embed the actual Power BI into your web application</li>
</ul>
</div>
<iframe width="1140" height="541" src="https://app.powerbi.com/reportEmbed?reportId=bbca75c2-ddcf-4ba7-be2e-89240a7aa266&autoAuth=true&ctid=1da8abb9-d0f0-483c-bab8-0e5d7e9ee15b&config=eyJjbHVzdGVyVXJsIjoiaHR0cHM6Ly93YWJpLXNvdXRoLWNlbnRyYWwtdXMtcmVkaXJlY3QuYW5hbHlzaXMud2luZG93cy5uZXQvIn0%3D" frameborder="0" allowFullScreen="true"></iframe>
</div>
</body>
</html>