Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hello
I would like to manage the sum of the measure (being the result of the line) depending on the customer
CUSTOMER | LINE | MEASURE |
A | 1 | 10 |
A | 2 | 20 |
B | 1 | 15 |
B | 2 | 30 |
thanks for your help
Improve your question, if you want faster solution. Start here
Use Calculated DAX function CustomersA= Calculate(SUM(Measure)), Customers="A")
I have hundreds of customers, the filter shall be variable
hi @FreemanZ
thanks for following up
my table looks in real as follows
the measure is
I need to have a measure which is the subtotal per customer.
does that make sense?
I specify more... I want to generate a new measure to have a table as follows
CUSTOMER | SUM OF MEASURE |
A | 30 |
B | 45 |
User | Count |
---|---|
10 | |
9 | |
7 | |
4 | |
4 |