Power BI

Power BI

9059 bookmarks
Custom sorting
Table.Distinct and case pitfalls with Power Query/M language
Table.Distinct and case pitfalls with Power Query/M language
In a previous post, I already blogged about case pitfalls in Power Query/M language. By default, comparisons are case-sensitive and that could be an issue when sorting list or tables but also when …
·seddryck.wordpress.com·
Table.Distinct and case pitfalls with Power Query/M language
Replacing Values in Power BI / Power Query (HTML code) - Powered Solutions
Replacing Values in Power BI / Power Query (HTML code) - Powered Solutions
With Power Query inside of Excel or Power BI, you can replace values by using the ‘Replace values’ button, but there are other approaches when you need to replace multiples values at the same time like the following ones: Imke’s way Bulk Replace The reality is that there are multiple ways to do it, but …
·poweredsolutions.co·
Replacing Values in Power BI / Power Query (HTML code) - Powered Solutions
Custom M function: GetTableOfDateAndDateTime
Custom M function: GetTableOfDateAndDateTime
My custom M function GetTableOfDateAndDateTime() makes it really easy to create tables of date or datetime values for your work with Power Query in Excel or Power BI Desktop.
·ssbi-blog.de·
Custom M function: GetTableOfDateAndDateTime
Power BI: M Query Basics (Part 1)
Power BI: M Query Basics (Part 1)
When you work with Power BI, you'll find that there are two languages to work with: DAX and M. Since most of the M query that you will regul...
·ladyruna.blogspot.com·
Power BI: M Query Basics (Part 1)
The Navigation Step in Power Query and Power BI–Navigating to rows, columns and cells - Powered Solutions
The Navigation Step in Power Query and Power BI–Navigating to rows, columns and cells - Powered Solutions
What is a “Navigation” step in Power Query? When using Power Query, you might’ve come across a step that reads “Navigation” and is usually automatically created for you by Power Query, but…what does it do? Well, if we look at the code that it was created for the Navigation step, it reads: = Source{[Item=”SalesTable”,Kind=”Table”]}[Data] It …
·poweredsolutions.co·
The Navigation Step in Power Query and Power BI–Navigating to rows, columns and cells - Powered Solutions
Power Query (M)agic: Super SubVars
Power Query (M)agic: Super SubVars
The Challenge I love the idea behind Power Query (M)agic. These posts let Power Query users learn and share best practices (tips & tricks) that solve real problems. Query management comes up a lot. Wh…
·powerpivotpro.com·
Power Query (M)agic: Super SubVars
Navigating Tabular Tables - Previous Row
Navigating Tabular Tables - Previous Row
This article is the starting point of a series of articles that demonstrates how to navigate through tables inside a Tabular Model, from Microsoft Analysis Services Tabular, Power Pivot or Power BI using DAX
·minceddata.info·
Navigating Tabular Tables - Previous Row
PowerQuery(M)agic: Advance Folder Combine - PowerPivotPro
PowerQuery(M)agic: Advance Folder Combine - PowerPivotPro
What an amazing year 2018 has started out to be! Joining the PowerPivotPro team was an aspiration of mine that started in the Fall of 2013… I wanted to BE a part of this team and this community – to be able to share what I have personally experienced and what I have learned about using PowerPivot In Excel and Power
·powerpivotpro.com·
PowerQuery(M)agic: Advance Folder Combine - PowerPivotPro
New Web Scraping experience in Power BI / Power Query (Using CSS Selectors) - Powered Solutions
New Web Scraping experience in Power BI / Power Query (Using CSS Selectors) - Powered Solutions
The latest version of Power BI Desktop came out with a new Web Connector specifically designed for Web Scraping Scenarios. in this blog post I’ll try to go deep into how this new experience works and how you can take advantage of it. Before we move forward, you’re gonna need the latest version of Power …
·poweredsolutions.co·
New Web Scraping experience in Power BI / Power Query (Using CSS Selectors) - Powered Solutions
Automatic Detection of Column Types in #PowerQuery - DataChant
Automatic Detection of Column Types in #PowerQuery - DataChant
Working with column types can be challenging in Power Query. The default conversion of types may not always work well for you, and may create future refresh errors, when the column names change. I have blogged about it in details here, and usually recommend to use explicit type conversion, and remove the automatic Changed Type detection …
·datachant.com·
Automatic Detection of Column Types in #PowerQuery - DataChant
Power Query – Renaming Multiple Columns
Power Query – Renaming Multiple Columns
I was working on a dataset where I wanted to change multiple column names using one step and not having to change them manually. Since there were over 30 columns this would be really time consuming…
·fourmoo.com·
Power Query – Renaming Multiple Columns
Time your Power Queries – #powerbi #powerquery
Time your Power Queries – #powerbi #powerquery
Sometimes your power queries can get quite heavy and you might need to optimize the steps in your query but how can you calculate the time it takes for your query to load. Wouldn't it be nice if you c…
·eriksvensen.wordpress.com·
Time your Power Queries – #powerbi #powerquery
Comparing 'null' values in Power Query | Excel Inside
Comparing 'null' values in Power Query | Excel Inside
Recently I needed to do the very simple thing in Power Query. I have the column of numbers and need to check if the values in this column are less than N and then put a corresponding text value in the new column. The function for the new column is something like this: Actually some values are not a numbers but nulls: Data contains nulls and comparison return an error And this simple calculation returns an error for these values! Why? There is the catch, which is hidden in the depth of documentation (actually on the page 67 of the "Power Query Formula Language Specification (October 2016)" P...
·excel-inside.pro·
Comparing 'null' values in Power Query | Excel Inside