Lapsed Customers

RockNGoalStar

New Member
Joined
Nov 4, 2022
Messages
5
Office Version
  1. 365
Platform
  1. MacOS
Hi All,

I am trying to work out a formula that will show me whether a customer's last order with me was within the last 3 months. I have a column with dates of their last order (F).

So, essentially I would like to ask IF this date occurred more than 3 months ago from TODAY's date then then the customer is Lapsed. if it was within the last 3 months then the customer is current.

If someone could help me with that, then I would be really grateful!

As an additional complication, but not wholly necessary if too much trouble, but would it be possible to work out customers who hadn't ordered for even longer, e.g. 6 months, and they would be Super Lapsed.

Many thanks in advance 🙏🙏🙏
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
Sounds like you need the Maxifs function, but can you post some sample data.

MrExcel has a tool called “XL2BB” that lets you post samples of your data that will allow us to copy/paste it to our Excel spreadsheets, so we can work with the same copy of data that you are. Instructions on using this tool can be found here: XL2BB Add-in

Note that there is also a "Test Here” forum on this board. This is a place where you can test using this tool (or any other posting techniques that you want to test) before trying to use those tools in your actual posts.
 
Upvote 0
asdf.xlsx
AB
1Order dateStatus
201-09-2022Not lapsed
301-06-2022Lapsed
401-01-2022Super lapsed
Sheet1
Cell Formulas
RangeFormula
B2:B4B2=IF((TODAY()-[@[Order date]])>180,"Super lapsed",IF((TODAY()-[@[Order date]])>90,"Lapsed","Not lapsed"))
 
Upvote 0
Solution
Sounds like you need the Maxifs function, but can you post some sample data.

MrExcel has a tool called “XL2BB” that lets you post samples of your data that will allow us to copy/paste it to our Excel spreadsheets, so we can work with the same copy of data that you are. Instructions on using this tool can be found here: XL2BB Add-in

Note that there is also a "Test Here” forum on this board. This is a place where you can test using this tool (or any other posting techniques that you want to test) before trying to use those tools in your actual posts.
Thanks for taking the time to reply and for the info :)
 
Upvote 0
It's always best to supply data, otherwise we are all just guessing as to your data layout.
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,692
Members
448,979
Latest member
DET4492

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top