March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I experience a severe performance issue with the evalution of lists:
The column Values of Table contains about 4000 lists with in average about 2 items.
The evaluation of
Output = List.Combine(Table[Values])
runs at only about 3 list/second!
The similar command
Output = Table.AddColumn(Table, "Count", each List.Count([Values]), Int64.Type),
MaxNrOfValues = List.Max(Output[Count])
is comparably slow.
Does list processing in Power Query generally need a lot of resources? How can I optimize this?
Wrap your Table[Column] in List.Buffer, like
List.Buffer(Table[Column])
You can do it right there in your formulas for all of your lists. You will likely see very significant improvements.
--Nate
I thought so too but it unfortunately has no significant impact on the performance.
It's impossible to confirm small improvements as benchmarking of Power Queries under Excel is generally very unreproducible.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.