Forum Discussion

ManjunathaEP's avatar
ManjunathaEP
Helper II
5 years ago
Solved

Return Customers count within 2 years

Hello,   Thank you in advance for helping me with the below issue. Please find the sample data given below and I would like to calculate the count of return customers within 2 years from a previous...
  • Jihwan_Kim's avatar
    Jihwan_Kim
    5 years ago

    Hi, ManjunathaEP 

    Thank you for your feedback.

    I am not 100% sure how your desired outcome looks like in the Calculated Column, but please check the below picture and the link down below.

     

     

    Expected Result CC =
    VAR currentorderno = 'Table'[Order No]
    VAR currentdate = 'Table'[Order Date]
    RETURN
    IF (
    COUNTROWS (
    FILTER (
    'Table',
    'Table'[Customer] = EARLIER ( 'Table'[Customer] )
    && 'Table'[Order No] <> currentorderno
    && 'Table'[Order Date]
    >= DATE ( YEAR ( currentdate ) - 2, MONTH ( currentdate ), DAY ( currentdate ) )
    && 'Table'[Order Date] < currentdate
    )
    ) > 0,
    "return",
    "new"
    )

     

     

    https://www.dropbox.com/s/qyxu6eb39ic43ma/manjunathaEPv2.pbix?dl=0 

     

     

    Hi, My name is Jihwan Kim.

     

    If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.

     

    Linkedin: linkedin.com/in/jihwankim1975/

    Twitter: twitter.com/Jihwan_JHKIM