Need Assistance with multi-condition "IF" formula

jaybowen

New Member
Joined
Nov 21, 2017
Messages
3
This is the first time I have been unable to find the answer to a formula question on these boards before, so I figured I would finally post a question myself:

First, some background - I work with multiple clients, who each submit cases to me. My boss recently asked me to begin tracking whether my clients are "active" or "inactive", meaning whether or not they have submitted a case within the last 3 months (or 90 days). I have columns for "date received", "client", and "Active?".

I am trying to create a formula to answer the following question -

if a specific client's most recent case is within the last 90 days, display "yes" under my "active" column; otherwise, display "no".

I am running into trouble with specifying that the date must be for each respective client's cases only.

Essentially, the formula must show me: IF date received = within the last 90 days, AND the client = specific name, THEN show "yes".

Can anyone help me figure out the solution to this issue?
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Hi jaybowen,

Assuming that your "date received" is in column A and your customer list is in column B, paste the following formula into column C (formula below is an example for cell C2):
=IF(COUNTIFS(B:B,B2,A:A,">"&TODAY()-90)>0,"yes","no")

Let me know if it helps.
 
Upvote 0
Thank you, JustynaMK!

that worked perfectly - I wasn't sure that I was ever going to be able to figure that out, I really appreciate your help.
 
Upvote 0
Thank you, JustynaMK!

that worked perfectly - I wasn't sure that I was ever going to be able to figure that out, I really appreciate your help.
 
Upvote 0

Forum statistics

Threads
1,214,584
Messages
6,120,385
Members
448,956
Latest member
JPav

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