Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
wraaesen
Regular Visitor

Apply any changes in/from Power Query Editor takes hours.

When I either want to make or apply any changes in/from Power Query Editor, it takes hours, and the loading screen shows an unreasonable amount of data usage (see pictures of 4GB & 9,9GB).
I can't comprehend that my file, only containing test data and a few calculations, can be so heavy.
Load from ValidLP.LCYLoad from ValidLP.LCYLoad from ValidLP.EURLoad from ValidLP.EUR
I have three tables:
A) Main table, "1 VA" (1200KB / 3000 rows)
B) Two Lookup tables, "5. ValidLP.EUR" & "5. ValidLP.LCY" (4000KB each /18000 rows)


I use a few Table.AddColumn together with the List.PositionOf function in the main table to do some lookup.

Not sure they could cause the problem.


Example:

     VA_Table 

Material
X
Y
Z
V

 

5 ValidLP.EUR

MaterialListPrice
X

10

Y20
Z30
V

40

 

= Table.AddColumn(#"Add brugerdefineret4", "ListPriceLookup", each #"5 ValidLP_EUR"[LP_EUR]{List.PositionOf(#"5 ValidLP_EUR"[Material],[Material])})

1 REPLY 1
Nintendo_Nerd99
Regular Visitor

I am not sure which is faster.

Buffer your lists before the above step:

 

 

 

Buff_LP_EUR = List.Buffer(#"5 ValidLP_EUR"[LP_EUR])
Buff_Material = List.Buffer(#"5 ValidLP_EUR"[Material])

 

 

 

or this might suffice:

 

 

 

Table.AddColumn(#"Add brugerdefineret4", "ListPriceLookup", (outer) => Table.SelectRows(#"5 ValidLP_EUR", each [LP_EUR] = outer[Material])[Price]{0})

 

 

 

 

 

 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

Find out what's new and trending in the Fabric community.