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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
eraldo_DP
Frequent Visitor

I need to return the last date of purchase customer

I thought of creating a column calculated for the count of Customer Active and Customer Reactivated.

 

Sorry my english, i need improve.

Sample:
https://1drv.ms/u/s!As-s3TNexQ8TippT44v8z_bKPBBPxg?e=ecQata 

 

Sample.png

1 ACCEPTED SOLUTION
Fowmy
Super User
Super User

@eraldo_DP 

Please find below the three Calculated Column Codes:

Date Diff Last Date = 

var __cust = [customer_id]
var __date = [sales_date]
var __lastdate = 
        CALCULATE(
        MAX(Data[sales_date]),
        Data[sales_date]  < __date,
        ALLEXCEPT(Data,Data[customer_id])
    )

return
IF( 
    NOT(ISBLANK(__lastdate)),
    __date - __lastdate
)

 

Active Customer = (Data[Date Diff Last Date] < 120 ) * 1

 

Customer Reactivated = (Data[Active Customer] = 0  ) * 1

 

Fowmy_0-1607258123931.png

________________________

If my answer was helpful, please click Accept it as the solution to help other members find it useful

Click on the Thumbs-Up icon if you like this reply 🙂


Website YouTube  LinkedIn

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

3 REPLIES 3
Fowmy
Super User
Super User

You are welcome!

 

ALLEXCEPT removes the filters from all the column from the table in 1st parameter except the columns specified in the other parameters.

________________________

If my answer was helpful, please click Accept it as the solution to help other members find it useful

Click on the Thumbs-Up icon if you like this reply 🙂


Website YouTube  LinkedIn

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Fowmy
Super User
Super User

@eraldo_DP 

Please find below the three Calculated Column Codes:

Date Diff Last Date = 

var __cust = [customer_id]
var __date = [sales_date]
var __lastdate = 
        CALCULATE(
        MAX(Data[sales_date]),
        Data[sales_date]  < __date,
        ALLEXCEPT(Data,Data[customer_id])
    )

return
IF( 
    NOT(ISBLANK(__lastdate)),
    __date - __lastdate
)

 

Active Customer = (Data[Date Diff Last Date] < 120 ) * 1

 

Customer Reactivated = (Data[Active Customer] = 0  ) * 1

 

Fowmy_0-1607258123931.png

________________________

If my answer was helpful, please click Accept it as the solution to help other members find it useful

Click on the Thumbs-Up icon if you like this reply 🙂


Website YouTube  LinkedIn

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Thanks for helping me with the solution. I had done the same, but I didn't use All Except.

 

The Best Solution!

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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