Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon'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.
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.
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
Material | ListPrice |
X | 10 |
Y | 20 |
Z | 30 |
V | 40 |
= Table.AddColumn(#"Add brugerdefineret4", "ListPriceLookup", each #"5 ValidLP_EUR"[LP_EUR]{List.PositionOf(#"5 ValidLP_EUR"[Material],[Material])})
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})
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
14 | |
13 | |
12 | |
12 | |
12 |