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.
Hi guys, I am having trouble with my sumx calculation to model the new sales amount based on modifying a customers discount for specific products ( propsoed discount) I have included an illustration to explain very simply my desired output and the logic behind the calculation .
Essentially, I want to loop through each customers individual product purchases and use their proposed discount to model their new sales amount but also get the total of the new sales amount across all our customers.
I have been using SUMX(VALUES(CUSTOMER), (LIST PRICE *(1-PROPOSED DISCOUNT)*AVERAGE QUANTITY SOLD )
but the total value ( ie when factoring the entire customer base) is always incorrect.
Any help would be appreciated!
Sales Total : =
VAR _customerlist =
VALUES ( Customers[Customer] )
VAR _salestotal =
ADDCOLUMNS (
_customerlist,
"@salestotal",
CALCULATE (
SUMX ( RELATEDTABLE ( Sales ), Sales[QS] * RELATED ( Products[Price] ) )
* ( 1 - SELECTEDVALUE ( Customers[Discount] ) )
)
)
RETURN
SUMX ( _salestotal, [@salestotal] )
User | Count |
---|---|
25 | |
12 | |
8 | |
6 | |
6 |
User | Count |
---|---|
26 | |
12 | |
11 | |
8 | |
6 |