Found 187 bookmarks
Newest
Conditions in FirstN, LastN and other xN-functions in M, PowerBI and Power Query – The BIccountant
Conditions in FirstN, LastN and other xN-functions in M, PowerBI and Power Query – The BIccountant
Today I discovered that we can use conditions in many of the N-selecting functions where one/I would normally expect just a number-expression for the N: Table.RemoveFirstN( table as table, optional countOrCondition as any) (…) Read more
·thebiccountant.com·
Conditions in FirstN, LastN and other xN-functions in M, PowerBI and Power Query – The BIccountant
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
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
Projections with Power BI (M language) | Ambiguity vs Information
Projections with Power BI (M language) | Ambiguity vs Information
In a previous blog post, I explained how to list all the Data Platform MVP by parsing a single web page. In a second blog post, I parsed the individual pages of each MVP to get information about he…
·seddryck.wordpress.com·
Projections with Power BI (M language) | Ambiguity vs Information
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
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)
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
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
Matchlists/tables in power query
Matchlists/tables in power query
let fxContain = (txt as text, idx as number) = let Result = if Text.Contains(txt,ListB{idx}) then ListB{idx} else if idx = ListCountB then null else @fxContain(txt,idx+1) in Result, ListA = {"help me rhonda", "in my room", "good vibrations", "god only knows"}, ListB = {"room", "me", "only", "help"}, ListCountB = List.Count(ListB)-1, ListC = List.Transform(ListA, each fxContain(_,0))in ListC
·social.technet.microsoft.com·
Matchlists/tables in power query