Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!See when key Fabric features will launch and what’s already live, all in one place and always up to date. Explore the new Fabric roadmap
Hi
I have a table with different sales dates X product , i want to put them on a visualisation matrice to have the difference between each sales date filtered by product name as showed below
I'm looking for a dax formula to calculate ''DIFFERENCE''
FILTER : Cars
SELL DATE | DIFFERENCE |
13/01/2023 | |
14/01/2023 | 1 |
18/01/2023 | 4 |
26/01/2023 | 8 |
04/02/2023 | 9 |
07/02/2023 | 3 |
… | … |
FILTER : Trucks
SELL DATE | DIFFERENCE |
14/01/2023 | |
18/01/2023 | 4 |
19/01/2023 | 1 |
21/01/2023 | 2 |
04/02/2023 | 14 |
07/02/2023 | 3 |
… | … |
Hey, you can try using
DIFFERENCE =
VAR CurrentProduct = SELECTEDVALUE('Product'[Product Name])
VAR CurrentDate = SELECTEDVALUE('Sales'[Sell Date])
RETURN
CALCULATE(
MIN('Sales'[Sell Date]) - CurrentDate,
FILTER(
ALL('Sales'),
'Sales'[Product Name] = CurrentProduct &&
'Sales'[Sell Date] < CurrentDate
)
)
Thank you. Hope this will help
Hi Thanks but this is giving me a date as result and not a number
User | Count |
---|---|
87 | |
74 | |
69 | |
58 | |
55 |
User | Count |
---|---|
41 | |
38 | |
34 | |
32 | |
30 |