Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
Anonymous
Not applicable

DIFFERENCE BETWEEN MULTIPLE DATES

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 DATEDIFFERENCE
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 DATEDIFFERENCE
14/01/2023 
18/01/2023                  4
19/01/2023                  1
21/01/2023                  2
04/02/2023                14
07/02/2023                  3
                 …
3 REPLIES 3
grazitti_sapna
Super User
Super User

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

Anonymous
Not applicable

Hi Thanks but this is giving me a date as result and not a number

Hey,
You can try using
DIFFERENCE =
VAR CurrentProduct = SELECTEDVALUE('Product'[Product Name])
VAR CurrentDate = SELECTEDVALUE('Sales'[Sell Date])
RETURN
DATEDIFF(
    MINX(
        FILTER(
            'Sales',
            'Sales'[Product Name] = CurrentProduct &&
            'Sales'[Sell Date] < CurrentDate
        ),
        'Sales'[Sell Date]
    ),
    CurrentDate,
    DAY
)
Thnak you
Hope this will help. 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.