Hi there,
I have a sales data table as below. Each customer has more than 1 contract.
I want to calculate the total sales between the latest contract date for each customer and up to 31 Dec 2021. The result i am expecting is the yellow cells below and the total should be $1490 (1300+100+90).
Dax:
Thank you!!
Solved! Go to Solution.
@Spacewalker can you try this
Measure =
CALCULATE (
[Total Sales],
FILTER (
Sales,
Sales[Contract Date]
>= CALCULATE ( MAX ( Sales[Contract Date] ), ALLEXCEPT ( Sales, Sales[Customer] ) )
&& Sales[Contract Date] <= DATE ( 2021, 12, 31 )
)
)
Proud to be a Super User!
New Animated Dashboard: Sales Calendar
@Spacewalker try this
Measure =
SUMX (
VALUES ( 'Table'[Customer] ),
CALCULATE (
MAX ( 'Table'[Car Purchased] ),
ALLEXCEPT ( 'Table', 'Table'[Customer] )
)
)
Proud to be a Super User!
New Animated Dashboard: Sales Calendar
@Spacewalker can you try this
Measure =
CALCULATE (
[Total Sales],
FILTER (
Sales,
Sales[Contract Date]
>= CALCULATE ( MAX ( Sales[Contract Date] ), ALLEXCEPT ( Sales, Sales[Customer] ) )
&& Sales[Contract Date] <= DATE ( 2021, 12, 31 )
)
)
Proud to be a Super User!
New Animated Dashboard: Sales Calendar
Hi @smpa01
Thank you for your advise. It works!!
I tried to apply the same concept to a very simple scenario below but i couldn't seem to get the desired result.
I have Customer A and B purchased cars from me. Due to certain reason, Customer A signed 3 different contracts but the total cars purchased by Customer A was 200,000 (#A001+#A002+#A003). Customer B purchased 800 cars. Hence, in total, i have sold 200,800 cars.
Excel:
How should i amend the formula so that the total in Power BI will show 200,800 instead of 200,000? I am not sure what i did wrong here...
Thank you!!
@Spacewalker try this
Measure =
SUMX (
VALUES ( 'Table'[Customer] ),
CALCULATE (
MAX ( 'Table'[Car Purchased] ),
ALLEXCEPT ( 'Table', 'Table'[Customer] )
)
)
Proud to be a Super User!
New Animated Dashboard: Sales Calendar
hi @smpa01
It works again!! i applied the logic to some other calculations in my dashboard and it all worked!
Thank you so much for your help!! You have just made the world a little better 😁
Cheers!
Hi @ValtteriN
Thanks for your advise.
However, the formula will still arrive at wrong amount.
The total amount should be the sum of all the lines above, which is total of $1490 (1300+100+90). The total should calculate each of the customers' sales at their respective latest contract start date.
Thank you!
Hi,
@Spacewalker
You can use this pattern to get the value for last sales date =
Start data:
Proud to be a Super User!
Hi,
Total calculation uses the same logic as the formula in the column it is in. You can create an IF logic to change this. E.g. Example = IF(ISBLANK(SELECTEDVALUE('Table'[Customer])),[Total sales],
CALCULATE([Total Sales],DATESBETWEEN('Calendar'[Date],[Latest Contract Start Date], date (2021,12,31)))
)
The point here is to change the calculation logic when we are calculating total.
I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!
Proud to be a Super User!
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
User | Count |
---|---|
104 | |
58 | |
45 | |
29 | |
24 |
User | Count |
---|---|
133 | |
94 | |
75 | |
44 | |
41 |