Skip to content

Instantly share code, notes, and snippets.

@matt40k
Created January 22, 2019 21:48
Show Gist options
  • Save matt40k/390b113c36f245f8ac92bacb17914b1e to your computer and use it in GitHub Desktop.
Save matt40k/390b113c36f245f8ac92bacb17914b1e to your computer and use it in GitHub Desktop.
Auto-refresh a Power BI report
<!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