Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default countifs Text and Dates

Hi there

I want to count how many "Level 1" cells that are older than "3/9/08". My
columns and rows look like this:

A B
Level 1 03/09/08
Level 2 04/11/07
Level 1 01/02/07
Level 1 31/03/08
Level 2 14/04/08
Level 4 16/09/06
Level 4 16/09/06

Can someone please give me the COUNTIF or SUMPRODUCT formula to calculate
this. I don't have 2007 so COUNTIFS aren't an option for me. I have read
through the other listings but can't seem to pinpoint a formula that works.

Thanks
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Max Max is offline
external usenet poster
 
Posts: 9,221
Default countifs Text and Dates

Assuming real dates in col B
One way, in say, C1:
=SUMPRODUCT((A1:A7="Level 1")*(B1:B7< --"3 Sep 2008"))
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:17,700 Files:359 Subscribers:55
xdemechanik
---
"mokihi" wrote:
I want to count how many "Level 1" cells that are older than "3/9/08". My
columns and rows look like this:

A B
Level 1 03/09/08
Level 2 04/11/07
Level 1 01/02/07
Level 1 31/03/08
Level 2 14/04/08
Level 4 16/09/06
Level 4 16/09/06

Can someone please give me the COUNTIF or SUMPRODUCT formula to calculate
this. I don't have 2007 so COUNTIFS aren't an option for me. I have read
through the other listings but can't seem to pinpoint a formula that works.

Thanks

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default countifs Text and Dates

Try this:

=SUMPRODUCT(--(A1:A10="level 1"),--(B1:B10DATE(2008,9,3)))

Better to use cells to hold the criteria:

D1 = level 1
E1 = 3/9/2008

=SUMPRODUCT(--(A1:A10=D1),--(B1:B10E1))

--
Biff
Microsoft Excel MVP


"mokihi" wrote in message
...
Hi there

I want to count how many "Level 1" cells that are older than "3/9/08". My
columns and rows look like this:

A B
Level 1 03/09/08
Level 2 04/11/07
Level 1 01/02/07
Level 1 31/03/08
Level 2 14/04/08
Level 4 16/09/06
Level 4 16/09/06

Can someone please give me the COUNTIF or SUMPRODUCT formula to calculate
this. I don't have 2007 so COUNTIFS aren't an option for me. I have read
through the other listings but can't seem to pinpoint a formula that
works.

Thanks



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Max Max is offline
external usenet poster
 
Posts: 9,221
Default countifs Text and Dates

I interp'd OP's spec: .. older than "3/9/08"
as meaning: dates earlier than or before "3/9/08"
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:17,700, Files:359, Subscribers:55
xdemechanik
---


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default countifs Text and Dates

Yeah, you're probably right.

--
Biff
Microsoft Excel MVP


"Max" wrote in message
...
I interp'd OP's spec: .. older than "3/9/08"
as meaning: dates earlier than or before "3/9/08"
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:17,700, Files:359, Subscribers:55
xdemechanik
---





  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default countifs Text and Dates

older than "3/9/08".

If "older" means before or earlier than 3/9/2008, then change to these:

=SUMPRODUCT(--(A1:A10="level 1"),--(B1:B10<DATE(2008,9,3)))

=SUMPRODUCT(--(A1:A10=D1),--(B1:B10<E1))


--
Biff
Microsoft Excel MVP


"T. Valko" wrote in message
...
Try this:

=SUMPRODUCT(--(A1:A10="level 1"),--(B1:B10DATE(2008,9,3)))

Better to use cells to hold the criteria:

D1 = level 1
E1 = 3/9/2008

=SUMPRODUCT(--(A1:A10=D1),--(B1:B10E1))

--
Biff
Microsoft Excel MVP


"mokihi" wrote in message
...
Hi there

I want to count how many "Level 1" cells that are older than "3/9/08". My
columns and rows look like this:

A B
Level 1 03/09/08
Level 2 04/11/07
Level 1 01/02/07
Level 1 31/03/08
Level 2 14/04/08
Level 4 16/09/06
Level 4 16/09/06

Can someone please give me the COUNTIF or SUMPRODUCT formula to calculate
this. I don't have 2007 so COUNTIFS aren't an option for me. I have read
through the other listings but can't seem to pinpoint a formula that
works.

Thanks





  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default Thanks

Thanks so much - you guys are magic - my headache has finally gone!

"mokihi" wrote:

Hi there

I want to count how many "Level 1" cells that are older than "3/9/08". My
columns and rows look like this:

A B
Level 1 03/09/08
Level 2 04/11/07
Level 1 01/02/07
Level 1 31/03/08
Level 2 14/04/08
Level 4 16/09/06
Level 4 16/09/06

Can someone please give me the COUNTIF or SUMPRODUCT formula to calculate
this. I don't have 2007 so COUNTIFS aren't an option for me. I have read
through the other listings but can't seem to pinpoint a formula that works.

Thanks

  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Thanks

Welcome. Take a moment to press the "Yes" buttons (like the ones below) in
the 2 responses which answered your query
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:17,700, Files:359, Subscribers:55
xdemechanik
---
"mokihi" wrote in message
...
Thanks so much - you guys are magic - my headache has finally gone!



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Two COUNTIFs Russell Excel Discussion (Misc queries) 2 August 19th 08 02:18 AM
Countifs Fx in 07 how in 03? HenderH Excel Discussion (Misc queries) 19 March 26th 08 12:37 PM
How do I convert dates stored as dates to text? diamunds Excel Discussion (Misc queries) 5 September 7th 07 05:38 PM
countifs Forza MIlan Excel Discussion (Misc queries) 2 July 4th 07 09:48 AM
Format text 'dates' to real dates Jacy Excel Worksheet Functions 4 July 24th 06 02:10 AM


All times are GMT +1. The time now is 04:21 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"