Power Query

Power Query

947 bookmarks
Custom sorting
Automatically remove empty columns and rows from a table in Excel using Power Query - DataChant
Automatically remove empty columns and rows from a table in Excel using Power Query - DataChant
Follow Me In today’s tutorial we will solve a very common challenge in Excel. You start with an Excel table and you wish to condense it by removing all the columns and/or rows which are entirely empty, and usually you don’t have prior knowledge which columns and rows are empty. For example, In the screenshot …
·datachant.com·
Automatically remove empty columns and rows from a table in Excel using Power Query - DataChant
Implementing Common Calculations In Power Query – Chris Webb's BI Blog
Implementing Common Calculations In Power Query – Chris Webb's BI Blog
let Source = Excel.CurrentWorkbook(){[Name="Table4"]}[Content], Subtotals = Table.Group(Source, {"Category"}, {{"Category Sales", each List.Sum([Sales]), type number}}), JoinTables = Table.Join(Source, "Category", Subtotals, "Category"), InsertedCustom = Table.AddColumn(JoinTables, "Share", each [Sales]/[Category Sales]), RemovedColumns = Table.RemoveColumns(InsertedCustom,{"Category Sales"})in RemovedColumns
·blog.crossjoin.co.uk·
Implementing Common Calculations In Power Query – Chris Webb's BI Blog
Transform Column using custom function in Power Query (part 2)
Transform Column using custom function in Power Query (part 2)
Year ago I wrote a post Transform table column using own function in Power Query. According to stats, it is quite popular topic, and I’m not surprised. However, I think that old post is quite…
·bondarenkoivan.wordpress.com·
Transform Column using custom function in Power Query (part 2)
Finding text strings of table inside text strings of other table
Finding text strings of table inside text strings of other table
Select Table 2, click the Query tab, and click Reference. This will create a new query that references Table 2 and will allow us to add a lookup column without enabling Fast Combine.Add a custom column with the following formula: List.First(List.Select(Table1[Product],(productName) => Text.Contains(productName, [Product])))Viola!
·social.technet.microsoft.com·
Finding text strings of table inside text strings of other table
Column Reordering Disorder - Pitfall #4 in #PowerBI #PowerQuery - DataChant
Column Reordering Disorder - Pitfall #4 in #PowerBI #PowerQuery - DataChant
Follow Me Order is a crucial force in life, especially if you are a data analyst. But as we will see today, the misuse of order might cause an unexpected chaos. In today’s post, we will discuss the chaotic nature of column ordering in the Query Editor of Power BI and Power Query / Get & …
·datachant.com·
Column Reordering Disorder - Pitfall #4 in #PowerBI #PowerQuery - DataChant
Specifying Allowed Values, Sample Values and Descriptions For Function Parameters In Power Query–Part 1 – Chris Webb's BI Blog
Specifying Allowed Values, Sample Values and Descriptions For Function Parameters In Power Query–Part 1 – Chris Webb's BI Blog
The other day when I was thinking about Power Query functions (as you do) it occurred to me that they would be a lot more usable if, when you invoked them, you could show your users a dropdown box …
·blog.crossjoin.co.uk·
Specifying Allowed Values, Sample Values and Descriptions For Function Parameters In Power Query–Part 1 – Chris Webb's BI Blog
Power BI – Power Query/Query Editor Automated Source Control
Power BI – Power Query/Query Editor Automated Source Control
I saw a blog post recently where Jay Killeen was talking about how he handles his Source Control for the Query Editor or Power Query. And this got me thinking of how I could automate this in a quic…
·gqbi.wordpress.com·
Power BI – Power Query/Query Editor Automated Source Control
Web Scraping in Power BI and Excel Power Query - DataChant
Web Scraping in Power BI and Excel Power Query - DataChant
There are abundant public data sources on the Web, and it is so tempting to import and mash them up with your existing data sets in Power BI and Excel Power Query to gain new correlations and insights. While it’s easy to import static tables from many websites in Power BI and Excel Power Query, you’ve probably …
·datachant.com·
Web Scraping in Power BI and Excel Power Query - DataChant