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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.

Top Solution Authors