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 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 |
---|---|
25 | |
12 | |
8 | |
7 | |
7 |
User | Count |
---|---|
25 | |
12 | |
11 | |
10 | |
6 |