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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Days between purchase and cancellation (days between two rows)

Hi all, 

 

I want to create a measure that calculates the number of days between a customer buys a product and returns it (if that happens). 

 

Our sales are stored in rows in a table like the one below:

NicoM96_3-1652725363072.png

 

 

Every bought product is stored in individual rows and has an unique purchase ID.  Can anyone help to count the number of days between the pruchase date and the return date?

 

 

Best,

 

NicoM96

1 ACCEPTED SOLUTION
v-yanjiang-msft
Community Support
Community Support

Hi @Anonymous ,

According to your description, here's my solution.

Create a measure.

Measure =
IF (
    MAX ( 'Table'[Purchase/return] ) = "return",
    DATEDIFF (
        MAXX (
            FILTER (
                ALL ( 'Table' ),
                'Table'[Product] = MAX ( 'Table'[Product] )
                    && 'Table'[Purchase ID] = MAX ( 'Table'[Purchase ID] )
                    && 'Table'[Date] <= MAX ( 'Table'[Date] )
                    && 'Table'[Purchase/return] = "Purchase"
            ),
            'Table'[Date]
        ),
        MAX ( 'Table'[Date] ),
        DAY
    ),
    BLANK ()
)

Get the expected result.

vkalyjmsft_0-1653027458403.png

I attach my sample below for reference.

 

Best Regards,
Community Support Team _ kalyj

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-yanjiang-msft
Community Support
Community Support

Hi @Anonymous ,

According to your description, here's my solution.

Create a measure.

Measure =
IF (
    MAX ( 'Table'[Purchase/return] ) = "return",
    DATEDIFF (
        MAXX (
            FILTER (
                ALL ( 'Table' ),
                'Table'[Product] = MAX ( 'Table'[Product] )
                    && 'Table'[Purchase ID] = MAX ( 'Table'[Purchase ID] )
                    && 'Table'[Date] <= MAX ( 'Table'[Date] )
                    && 'Table'[Purchase/return] = "Purchase"
            ),
            'Table'[Date]
        ),
        MAX ( 'Table'[Date] ),
        DAY
    ),
    BLANK ()
)

Get the expected result.

vkalyjmsft_0-1653027458403.png

I attach my sample below for reference.

 

Best Regards,
Community Support Team _ kalyj

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Whitewater100
Solution Sage
Solution Sage

Hi:

If you want to see positive value for answer it would be:

Return Days =
var ifreturn =
CALCULATE(MAX(Purchases[Date]), ALLEXCEPT(Purchases,Purchases[Purch ID]))
return
IF(Purchases[Date] = ifreturn, BLANK(), INT(Purchases[Date] - ifreturn))*-1
Whitewater100
Solution Sage
Solution Sage

Hi Nico:

I was calling your table "Purchases.

I added Calc col

Return Days =
var ifreturn =
CALCULATE(MAX(Purchases[Date]), ALLEXCEPT(Purchases,Purchases[Purch ID]))
return
IF(Purchases[Date] = ifreturn, BLANK(), INT(Purchases[Date] - ifreturn))
Whitewater100_0-1652726779683.png

I hope you can mark as solved. Thanks..

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors