Forum Discussion
alpertakci
Jan 06, 2023Copper Contributor
Determining New Customers
I have a list of customers serving different brands. Please see attached sample data. Each customer may be working with one or multiple brands. I am trying to determine which customers are new. The r...
- Jan 06, 2023
Assuming I understood, with Excel 2021 or 365:
in K5:
=LET( uCustomers, UNIQUE(Table1[Customer]), FILTER(uCustomers, MINIFS(Table1[Active Since],Table1[Customer],uCustomers) >= EOMONTH(TODAY(),-1)+1) )
Lorenzo
Jan 06, 2023Silver Contributor
Assuming I understood, with Excel 2021 or 365:
in K5:
=LET(
uCustomers, UNIQUE(Table1[Customer]),
FILTER(uCustomers, MINIFS(Table1[Active Since],Table1[Customer],uCustomers) >= EOMONTH(TODAY(),-1)+1)
)
- alpertakciJan 06, 2023Copper ContributorThis works super for me as long as my last_activity dates are later than the active_since dates, which, logically should be in that order. Thank you!
- LorenzoJan 06, 2023Silver Contributor
alpertakci Glad this helped & Thanks for providing feedback