cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills 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
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors