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.
I'm having this error at my table after using multiple SUMX in a dax. Is there any alternate solution besides simplifying the query, reducing data volume, and optimizing the data model? hoping to fix it in an alternate Dax solution
This measure is computationally expensive, primarily due to its heavy reliance on multiple nested SUMX functions and iterative calculations over potentially large tables.
Proud to be a Super User!
@mann0321 Try using SUMMARIZE to pre-aggregate the data at different levels before performing the final aggregation
Cal_L2_amount_sumx =
VAR summarizedTable =
SUMMARIZE(
dim_cost_center,
dim_cost_center[Level1],
dim_market[Market],
dim_cost_type[CostType],
dim_brand[Brand],
vc_dim_wrap[Wrap],
dim_date[Date],
"SumAmount", SUM([sum_amount])
)
VAR filteredTable =
FILTER(
summarizedTable,
dim_cost_center[Level1] IN VALUES(dim_market[Market])
)
RETURN
SUMX(filteredTable, [SumAmount])
Proud to be a Super User! |
|
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 |
---|---|
147 | |
85 | |
66 | |
52 | |
46 |
User | Count |
---|---|
215 | |
90 | |
83 | |
66 | |
58 |