Correcting Source Data in Power BI - Excelerator BI
This article continues to build on my COVID Case Fatality Rate report for Australia. Something happened with the global source data this week – in short, it was wrong. This is a global database and I am sure there are many people diligently trying to keep the data up to [...]Read More »
Chris Webb's BI Blog: Query Pending Event In Power BI Performance Analyzer Chris Webb's BI Blog
A quick note for anyone like me who spends too much time looking at the JSON exports from Performance Analyzer in Power BI Desktop: you may have noticed an event called Query Pending that isn’…
Building a Metrics Store using PowerBI – Project Controls blog
was listening to this Excellent Podcast about Minerva, basically Airbnb went and built a Metrics Store which is a central tool that hold all Measures and dimensions, the idea is to have one source …
Power BI - Solution to 'This dataset includes a dynamic data source ... this dataset won't be refreshed.'
I’m pulling data from GitHub Codeowners into a Power BI report. All was dandy locally, but refresh failed on the PBI service with this:This dataset includes a dynamic data source. Since dynamic data sources aren’t
We often have our data spread out in different Excel workbooks and sheets. How do we combine all of them into one table? Let’s walk through an example. We have our data saved in a folder with three files: 2019.xlsx, 2020.xlsx, and 2021.xlsx. You can download the files here. Each file contains three sheets: AC, …
Rename Many Columns at Once in Power BI - Excelerator BI
This is not the first time I have shared this concept. In my previous article I showed how it is possible to add a prefix to every column in a table. This article today is slightly different. Today I am removing text from multiple columns all at once using some [...]Read More »
This is not the first time I have shared this concept. In my previous article I showed how it is possible to add a prefix to every column in a table. This article today is slightly different. Today I am removing text from multiple columns all at once using some [...]
Chris Webb's BI Blog: How Query Folding And The New Power BI Dataflows Connector Can Help Dataset Refresh Performance
You may have noticed that a new dataflows connector was announced in the August 2021 release of Power BI Desktop, and that it now supports query folding between a dataset and a dataflow – whi…
Earlier this month I published a new and very practical Power BI app on Microsoft AppSource. The app audits Excel workbooks and detects changes and errors. To implement the app I needed to resolve key obstacles that are very common when you import Excel workbooks using Power Query. How do you import the data from […]
Power Query: Insert Sum Rows for Dynamic Periods - Microsoft Power BI Community
Sample Table In the following scenario, I would like to insert a sum row for each 5 days as an example. Method 1 let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("bdBLCsAgDATQu7iWkon1dxbx/tdoAqWQjrh7yiTjWklFcdlJOUEk7fyRGtUgxaQHuU1GkGrSgjR60yl5+HgEmhRk9/8k+N4z...
Some filter operations based on character function... - Microsoft Power BI Community
Usage scenarios: Sample data table: #1. Check field if they existed English characters.(upper: 65 ~ 90, lower: 97 ~ 122) Create a list of all English characters. List.Transform(List.Union({{65..90},{97..122}}),each Character.FromNumber(_)) Add a custom column with function to compare each cha...
Quick Tips: Adding Leading Zero to Integer Values (Padding) with DAX and Power Query
There are some cases that we want to add a leading zero to a digit, such as showing 01 instead of 1, 02 instead of 2 and so on. We have two options to do this in Power BI, doing it in Power Query or doing it with DAX. Adding a Leading Zero in Power … Continue reading Quick Tips: Adding Leading Zero to Integer Values (Padding) with DAX and Power Query
Chris Webb's BI Blog: Preserving Data Types With SQL Queries In Power Query And Power BI Chris Webb's BI Blog
My post earlier this year on enabling query folding when using SQL queries as a data source in Power Query provoked a lot of interest. This post adds one more useful detail: how to preserve the ori…