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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

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
PBIApril_Carousel

Power BI Monthly Update - April 2025

Check out the April 2025 Power BI update to learn about new features.

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors