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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
fraserward
Frequent Visitor

DAX to show the Customer_TK in a matrix with lost customer formula

I have used been using some DAX code for new and returning customers from sqlbi, though I am looking for a way to change/update the code to be able to show the Customer_TK in a matrix for Lost Customers.  

 

fraserward_0-1675351761081.png

Three other retention measures working, and when drill down to Customer_TK...

 

fraserward_1-1675351840768.png

Working correctly.  Now I add the Lost Customer measure....

 

fraserward_2-1675351949909.png

This works great with the date, but....

 

fraserward_0-1675352735417.png

Not when trying to see the breakdown with Customer_TK

 

How can I modify this DAX to allow the Lost Customer measure to be filtered by the customer dimension in this matrix.

Here is the DAX...

 

 

Lost Customers = 

VAR LastDateLost = 
    CALCULATE(
        MAX(dim_date[date]),
        ALLSELECTED(dim_date)
    )

VAR CustomersWithLostDate = 
    CALCULATETABLE(
        ADDCOLUMNS(
            VALUES(fact[CUSTOMER_TK]),
            "@LostCustomerDate", [Date Lost Customer]
        ),
        ALLSELECTED(dim_customer),
        dim_date[date] <= LastDateLost
    )

VAR LostCustomers = 
    FILTER(
        CustomersWithLostDate,
        [@LostCustomerDate]
            IN VALUES(dim_date[date])
    )

VAR Result = 
    COUNTROWS(LostCustomers)

RETURN
    Result

 

 

Cheers

2 REPLIES 2
amitchandak
Super User
Super User

@fraserward , refer if my example can help

 

Customer Retention with Dynamic Segmentation, New/Lost/Retain Customer Count: https://www.youtube.com/watch?v=W4EF1f_k6iY

Hi amitchandak,

@amitchandak 


I will check out the video now.  I think your link might be wrong though.  I believe this would be the link you meant... https://www.youtube.com/watch?v=EyL7KMw877Q 

 

 

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.