The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 |
---|---|
20 | |
8 | |
7 | |
7 | |
6 |
User | Count |
---|---|
28 | |
12 | |
12 | |
9 | |
8 |