Countifs?

nashetho

New Member
Joined
Jul 3, 2024
Messages
2
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
  3. Mobile
  4. Web
I have a sheet for tracking activities that is filled inw ith a MS Form.

I have a countif for a total count of key words in column N
I would like to be able to do a count of the key words but limited to within the last 3 months, The date is in column F.

I thought a countifs might work but I am not great with excel and wondered if anyone could assist with the appropriate formula.

The current countif for the total is: =COUNTIF(sheet1!N2:N999,"*Intubation*")

Cheers
Chris
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Hi & Welcome to MrExcel.

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
Hi unfortunately my spreadsheet is within a secure NHS system which wont let me copy out data sorry.
 
Upvote 0
Okay,

Try

Excel Formula:
=COUNTIFS(Sheet1!N2:N999,"*Intubation*",Sheet1!F2:F999,">="&DATE(2024,1,1),Sheet1!F2:F999,"<="&DATE(2024,3,1))

Add your start date in this part - DATE(2024,1,1)
Add your end date in this part - DATE(2024,3,1)
 
Upvote 0
One more option:
Excel Formula:
=COUNTIFS(sheet1!N:N,"*Intubation*",sheet1!F:F,">="&EDATE(TODAY(),-3))
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

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