Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello,
I'm stuck on this summarization problem:
I've a calculation with some conditions based on a Sales Table and I just want to aggregate by Customer:
VAR selGoal = 5000
VAR deltaYtd =
IF ( [Act YTD] > selGoal, ( [Act YTD] - selGoal ) )
VAR deltaMon =
CALCULATE ( [Act] - deltaYtd )
VAR lvl0Calc =
CALCULATE (
IF ( deltaYtd > 0, IF ( deltaMon < 0, 0, deltaMon ), [Act] ),
FILTER ( 'Dim Customer', HASONEVALUE ( 'Dim Customer'[CUSTOMER_ID] ) )
)
VAR result =
SUMX (
SUMMARIZE ( 'Dim Customer', 'Dim Customer'[Customer Desc], "value", lvl0Calc ),
[value]
)
RETURN
result
The above calculation should works at customer's maximum level of detail (customer_id) and aggregated by "customer Desc"
The join between Sales and customer is by CUSTOMER_ID
I don't know how to perform the aggregation, for example Nutrilab 2.0 Srl should be 6784.
Any hint is appreciated,
Marco
Solved! Go to Solution.
@ribaldo ,
First create a measure without this Say M1
SUMX (
SUMMARIZE ( 'Dim Customer', 'Dim Customer'[Customer Desc], "value", lvl0Calc ),
[value]
)
Then create a new measure and use above calculation using the measure(M1) you created without that and try
create the new measure for summarize the table with sumx
@Anonymous I created the M2 measure that summarize M1, but it doesn't work:
Thank you for your answer.
I created a measure M1 :
M1 =
VAR selGoal = 5000
VAR deltaYtd =
IF ( [Act YTD] > selGoal, ( [Act YTD] - selGoal ) )
VAR deltaMon =
CALCULATE ( [Act] - deltaYtd )
VAR lvl0Calc =
CALCULATE (
IF ( deltaYtd > 0, IF ( deltaMon < 0, 0, deltaMon ), [Act] ),
FILTER ( 'Dim Customer', HASONEVALUE ( 'Dim Customer'[CUSTOMER_ID] ) )
)
RETURN
lvl0Calc
and then a M2 using M1:
M2 =
SUMX (
SUMMARIZE ( 'Dim Customer', 'Dim Customer'[Customer Desc], "value", [M1] ),
[value]
)
But with no success:
I did something wrong?
@ribaldo ,
First create a measure without this Say M1
SUMX (
SUMMARIZE ( 'Dim Customer', 'Dim Customer'[Customer Desc], "value", lvl0Calc ),
[value]
)
Then create a new measure and use above calculation using the measure(M1) you created without that and try
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
20 | |
7 | |
6 | |
5 | |
5 |
User | Count |
---|---|
26 | |
10 | |
10 | |
9 | |
6 |