The most awesome Power BI soundtrack
29 Apr 2014The most awesome Power BI soundtrack is of course I’ve Got The Power by Snap! :) If you have a better idea, just let me know. Enjoy!
The most awesome Power BI soundtrack is of course I’ve Got The Power by Snap! :) If you have a better idea, just let me know. Enjoy!
Here is another example of what can be done with Power BI. This time I attempted to analyze crime rates in Amsterdam.
I retrieved burglary and burglary attempts figures from the Dutch Police website: http://www.politie.nl/misdaad-in-kaart/lijst?geoquery=amsterdam&categorie=1&categorie=2&pageSize=500&page=1
There are three pages here, so I use Power Query to get all three pages into Excel and then appended them together in one big table. I did this using three ‘from web’ commands in Power Query, so I got the following queries:
Next step was to append the three tables together. I started with the ‘append’ command in Power Query which allowed me to append Page1 and Page 2 together. A quick edit of the code gave me the result I was looking for:
let Source = Table.Combine({Page1,Page2}), Source2 = Table.Combine({Source,Page3}) in Source2
And the resulting table:
Next, I loaded the table to PowerPivot, added a quick sum and then opened Power Map by going to InsertàMap in Excel.
In Power Map I created three layers, one using shapes, another one using a heat map and a third using a column graph. Then I created a tour using these layers. The resulting video is below.
As you can see, it is really easy to visualize geographical data using Power BI in Excel! Pretty cool huh?
This is not a late April fool’s joke. SQL Server 2014 has been made generally available on April 1st 2014. See the original blog post here: http://blogs.technet.com/b/dataplatforminsider/archive/2014/04/01/sql-server-2014-now-generally-available.aspx
I encourage you to download and try SQL Server 2014 or run it in a VM in our Azure cloud. Also you might want to block your calendars for a live stream on April 15: “Accelerate Your Insights” (http://www.microsoft.com/en-us/server-cloud/new.aspx?WT.mc_id=Blog_SQL_Launch_SQL2014).
With Power BI you can create an Excel sheet based on your data and then get it refreshed so your report always has the latest information.
If you run into trouble with this, here is how to troubleshoot the data refresh.
If your Data Management Gateway crashes a lot, just make sure you have .NET framework version 4.5.1 or later installed. 4.5.1. introduced fixes that the Data Management Gateway needs.
If you install it and reboot the server your DMG should be running much more smoothly.