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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
samirkhan
Frequent Visitor

Returning and New Members

Hi All,

 

Can somone help me to find out the count of customers and the corresponding sales for customers who are members.

 

1. Returning Members = Unique count of Customers who have "1" in Member Column for this period but also have "1"  before the min date in this period if they booked anything in past.

2. New Members = Unique Count of Customers who have "1" in this period but "0" in previous periods. Again they may me returning customers but became members this period.

 

Customer Email(UniqueID)Booking DateMember (1/0)Booking Amount
abc01/01/19901£
abc02/01/19900£
abc03/01/19901£
abc04/01/19900£

 

I used the queries below for New/ Returning Customers but stuck with the Membership metrics.

 

NewCustomers = COUNTROWS(FILTER(ADDCOLUMNS(VALUES(AllAdvam[CustomerEmailAddress]),"PreviousSale",CALCULATE(COUNTROWS(AllAdvam),FILTER(ALL(AllAdvam[Booking Date].[Date]),AllAdvam[Booking Date].[Date]<MIN(AllAdvam[Booking Date].[Date])))),[PreviousSale]=0))

 

Returning Customer = COUNTROWS(FILTER(ADDCOLUMNS(VALUES(AllAdvam[CustomerEmailAddress]),"PreviousSale",CALCULATE(COUNTROWS(AllAdvam),FILTER(ALL(AllAdvam[Booking Date].[Date]),AllAdvam[Booking Date].[Date]<MIN(AllAdvam[Booking Date].[Date])))),[PreviousSale]>0))

 

May be, I need to add another filter for Members columns to the codes above?

 

Sam

 

0 REPLIES 0

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

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

August Carousel

Fabric Community Update - August 2024

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

Top Solution Authors