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

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

Reply
James__
Frequent Visitor

Help in Identifying Renewal Customers

Hi,

 

I have a list of policy sales and i need to identify which customers have renewed. Each policy is 12 months in duration and each customer has an unique ID.

 

Can anyone help identify which policy have been renewed? I'd like to sum this data and the turn it into a percentage, which is the easy bit. I'm just struggling to write the measure to idenify renewed customers.

 

Sample data:

 

James___0-1664952435867.png

 

1 ACCEPTED SOLUTION

Try this measure:

Renewed =
VAR _ID =
    MAX ( 'Table'[Unique ID] )
VAR _Reg =
    MAX ( 'Table'[Reg] )
VAR _Renewed =
    IF (
        COUNTROWS (
            SUMMARIZE (
                FILTER ( ALL ( 'Table' ), 'Table'[Unique ID] = _ID && 'Table'[Reg] = _Reg ),
                'Table'[Unique ID],
                'Table'[Reg],
                'Table'[Inception Date]
            )
        ) > 1,
        "Renewed"
    )
VAR _date =
    CALCULATE (
        MAX ( 'Table'[Inception Date] ),
        FILTER ( ALLEXCEPT ( 'Table', 'Table'[Unique ID] ), NOT ISBLANK ( _Renewed ) )
    )
RETURN
    IF ( MAX ( 'Table'[Inception Date] ) = _date, _date )

result.png

 





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






View solution in original post

4 REPLIES 4
James__
Frequent Visitor

Unique IDRegPolicy CountProductInception DateIs_renewal (1,0)   
ABC123NU72CAR1MOT Cover01/01/20210   
ABC124NU72CAB1MOT Cover01/01/20220   
ABC125NU72CAC1MOT Cover01/01/20220   
ABC123NU72CAR1MOT Cover01/01/20221   
         
         
         
         
         

 

As you can see, unique user ABC123 has renewed their product. Initial product has an inception date of 01/01/2021 and the renewal product has an inception date of 01/01/2022. The vehicle reg is the same, which is important. 

Try this measure:

Renewed =
VAR _ID =
    MAX ( 'Table'[Unique ID] )
VAR _Reg =
    MAX ( 'Table'[Reg] )
VAR _Renewed =
    IF (
        COUNTROWS (
            SUMMARIZE (
                FILTER ( ALL ( 'Table' ), 'Table'[Unique ID] = _ID && 'Table'[Reg] = _Reg ),
                'Table'[Unique ID],
                'Table'[Reg],
                'Table'[Inception Date]
            )
        ) > 1,
        "Renewed"
    )
VAR _date =
    CALCULATE (
        MAX ( 'Table'[Inception Date] ),
        FILTER ( ALLEXCEPT ( 'Table', 'Table'[Unique ID] ), NOT ISBLANK ( _Renewed ) )
    )
RETURN
    IF ( MAX ( 'Table'[Inception Date] ) = _date, _date )

result.png

 





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






Thanks @PaulDBrown that did the job.

amitchandak
Super User
Super User

@James__ ,
Can you please share sample data and sample output in table format?

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

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

March2025 Carousel

Fabric Community Update - March 2025

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