Created
January 22, 2019 21:48
-
-
Save matt40k/390b113c36f245f8ac92bacb17914b1e to your computer and use it in GitHub Desktop.
Auto-refresh a Power BI report
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>PowerBI</title> | |
<script> | |
var noOfMins = 1; | |
setInterval(function() { | |
window.location.reload(); | |
}, (noOfMins * 60 * 1000)); | |
//var date = new Date(); | |
//console.log(date.toLocaleString('en-GB', { hour12: false })); | |
</script> | |
</head> | |
<body> | |
<!-- BELOW - Copy the PowerBI IFRAME - BELOW --> | |
<!-- ABOVE - Copy the PowerBI IFRAME - ABOVE --> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment