Countifs Results Problem

rex759

Well-known Member
Joined
Nov 8, 2004
Messages
608
Office Version
  1. 365
Platform
  1. Windows
Hello,
I want to show the message “>3” for all dates involved if the date inputted falls between a 30 day period.

In the example below, I want the dates 2/1/16 & 2/22/16 to also show the message “>3” because they are part of the 4 dates that is causing the error.

Is there a better formula to show all dates involved than countifs to obtain these results?
Excel Workbook
ABC
1DateModeError
22/1/161
32/10/161>3
43/10/161
54/10/161
65/10/161
76/10/161
87/10/161
91/11/161
102/9/161>3
112/22/161
Sheet1
Excel 2010
Cell Formulas
RangeFormula
C2=IF(COUNTIFS($A$2:$A$11,">"&A2-15,$A$2:$A$11,"<"&A2+15,$B$2:$B$11,"="&B2)>3,">3","")
C3=IF(COUNTIFS($A$2:$A$11,">"&A3-15,$A$2:$A$11,"<"&A3+15,$B$2:$B$11,"="&B3)>3,">3","")
C4=IF(COUNTIFS($A$2:$A$11,">"&A4-15,$A$2:$A$11,"<"&A4+15,$B$2:$B$11,"="&B4)>3,">3","")
C5=IF(COUNTIFS($A$2:$A$11,">"&A5-15,$A$2:$A$11,"<"&A5+15,$B$2:$B$11,"="&B5)>3,">3","")
C6=IF(COUNTIFS($A$2:$A$11,">"&A6-15,$A$2:$A$11,"<"&A6+15,$B$2:$B$11,"="&B6)>3,">3","")
C7=IF(COUNTIFS($A$2:$A$11,">"&A7-15,$A$2:$A$11,"<"&A7+15,$B$2:$B$11,"="&B7)>3,">3","")
C8=IF(COUNTIFS($A$2:$A$11,">"&A8-15,$A$2:$A$11,"<"&A8+15,$B$2:$B$11,"="&B8)>3,">3","")
C9=IF(COUNTIFS($A$2:$A$11,">"&A9-15,$A$2:$A$11,"<"&A9+15,$B$2:$B$11,"="&B9)>3,">3","")
C10=IF(COUNTIFS($A$2:$A$11,">"&A10-15,$A$2:$A$11,"<"&A10+15,$B$2:$B$11,"="&B10)>3,">3","")
C11=IF(COUNTIFS($A$2:$A$11,">"&A11-15,$A$2:$A$11,"<"&A11+15,$B$2:$B$11,"="&B11)>3,">3","")
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Hi,

You can add "=" to the formula
=IF(COUNTIFS($A$2:$A$11,">"&A2-15,$A$2:$A$11,"<"&A2+15,$B$2:$B$11,"="&B2)>=3,">3","")
 
Upvote 0
Hello and thank you for responding. This is much closer but if it only = 3, I don't want the message to appear. I only want to see the message if >3.
 
Upvote 0
For C11 (2/22/16) there are only 3 dates that return TRUE for your formula....and that is why you don't see the “>3”
 
Upvote 0
Correct but I don't want to see the rest of the ">3"if it only equals 3. Does that make sense? The error should truly show when there is 4 or more.
 
Upvote 0
For example, if A11 = 2/22, I should see any errors. If A11= 2/15, the error should show in C2, C3, C10 & C11
 
Upvote 0
*correction
For example, if A11 = 2/22, I shouldn't see any errors. If A11= 2/15, the error should show in C2, C3, C10 & C11
 
Upvote 0
DateModeErrorNmber of
01/02/161 3
10/02/161>34
10/03/161 1
10/04/161 1
10/05/161 1
10/06/161 1
10/07/161 1
11/01/161 1
09/02/161>34
22/02/161 3

<colgroup><col width="70" span="4" style="width:52pt"> </colgroup><tbody>
</tbody>
As you can see only if it's >3 it show the ">3"
 
Upvote 0
So in your example, I would want to see the 4 cells that make up that red 4. Maybe countifs isn't the way to go
 
Upvote 0
DateModeErrorNumber of
01/02/161>34
10/02/161>34
10/03/1611
10/04/1611
10/05/1611
10/06/1611
10/07/1611
11/01/1611
09/02/161>34
15/02/161>34

<tbody>
</tbody>

If you chnage A11 to 2/15 then 4 cells are >3
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,826
Messages
6,121,797
Members
449,048
Latest member
greyangel23

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