Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Couting the number of referrences that...


What formula can i use that can count the number of rows that have
specified text?

for example:
A B C
Stevens Water Job Job secured

if this were one record of many, i need a formula to count the number
of records that say water job and job secured.


--
speakers_86
------------------------------------------------------------------------
speakers_86's Profile: http://www.excelforum.com/member.php...o&userid=36839
View this thread: http://www.excelforum.com/showthread...hreadid=565463

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 143
Default Couting the number of referrences that...

=COUNTIF(A:A,"Water Job")

Change the range as per your need.

let me know if this is what u wanted.


"speakers_86"
wrote in message
...

What formula can i use that can count the number of rows that have
specified text?

for example:
A B C
Stevens Water Job Job secured

if this were one record of many, i need a formula to count the number
of records that say water job and job secured.


--
speakers_86
------------------------------------------------------------------------
speakers_86's Profile:
http://www.excelforum.com/member.php...o&userid=36839
View this thread: http://www.excelforum.com/showthread...hreadid=565463



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Couting the number of referrences that...


im not in the office now, but that looks like it will work. How do I
add another criteria? i need to know how many records say water AND
secured

i appreciate your help.


--
speakers_86
------------------------------------------------------------------------
speakers_86's Profile: http://www.excelforum.com/member.php...o&userid=36839
View this thread: http://www.excelforum.com/showthread...hreadid=565463

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 143
Default Couting the number of referrences that...

one way is

=countif(A:A,"water")+countif(a:a,"secured")


"speakers_86"
wrote in message
...

im not in the office now, but that looks like it will work. How do I
add another criteria? i need to know how many records say water AND
secured

i appreciate your help.


--
speakers_86
------------------------------------------------------------------------
speakers_86's Profile:
http://www.excelforum.com/member.php...o&userid=36839
View this thread: http://www.excelforum.com/showthread...hreadid=565463



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Couting the number of referrences that...


actually thats not exactly what i need. if a job comes in, it is
classified as mold, water, fire damage, etc. Then, there is the status
of the job. Wether it was secured, no job, pending. im looking for a
formula that will look for water jobs in one column, then out of those
jobs, count the number that are no job. thnx


--
speakers_86
------------------------------------------------------------------------
speakers_86's Profile: http://www.excelforum.com/member.php...o&userid=36839
View this thread: http://www.excelforum.com/showthread...hreadid=565463



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,688
Default Couting the number of referrences that...

Hi!

Try this:

=SUMPRODUCT(--(B1:B10="water job"),--(C1:C10="no job"))

Better to use cells to hold the criteria:

D1 = water job
E1 = no job

=SUMPRODUCT(--(B1:B10=D1),--(C1:C10=E1))

Biff

"speakers_86"
wrote in message
...

actually thats not exactly what i need. if a job comes in, it is
classified as mold, water, fire damage, etc. Then, there is the status
of the job. Wether it was secured, no job, pending. im looking for a
formula that will look for water jobs in one column, then out of those
jobs, count the number that are no job. thnx


--
speakers_86
------------------------------------------------------------------------
speakers_86's Profile:
http://www.excelforum.com/member.php...o&userid=36839
View this thread: http://www.excelforum.com/showthread...hreadid=565463



  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Couting the number of referrences that...


None of those formulas seem to work. I need a =countif that reffers to
a different sheet and looks at two ranges and two different criterias.


--
speakers_86
------------------------------------------------------------------------
speakers_86's Profile: http://www.excelforum.com/member.php...o&userid=36839
View this thread: http://www.excelforum.com/showthread...hreadid=565463

  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,688
Default Couting the number of referrences that...

"speakers_86" wrote...
None of those formulas seem to work. I need a =countif that reffers to
a different sheet and looks at two ranges and two different criterias.


Ok...

Tell us EXACTLY which sheet and EXACTLY which two ranges and EXACTLY what
the two criteria are.

Biff


  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Couting the number of referrences that...


The sheet is called master copy
range J:J criteria Water
range L:L criteria no job

thanks biff!


--
speakers_86
------------------------------------------------------------------------
speakers_86's Profile: http://www.excelforum.com/member.php...o&userid=36839
View this thread: http://www.excelforum.com/showthread...hreadid=565463

  #10   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,688
Default Couting the number of referrences that...

Try this:

=SUMPRODUCT(--('Master Copy'!J1:J65535="Water"),--('Master
Copy'!L1:L65535="no job"))

You can't use entire columns as ranges with Sumproduct J:J, L:L

Biff

"speakers_86"
wrote in message
...

The sheet is called master copy
range J:J criteria Water
range L:L criteria no job

thanks biff!


--
speakers_86
------------------------------------------------------------------------
speakers_86's Profile:
http://www.excelforum.com/member.php...o&userid=36839
View this thread: http://www.excelforum.com/showthread...hreadid=565463





  #11   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Couting the number of referrences that...


you rock. thanks biff


--
speakers_86
------------------------------------------------------------------------
speakers_86's Profile: http://www.excelforum.com/member.php...o&userid=36839
View this thread: http://www.excelforum.com/showthread...hreadid=565463

  #12   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,688
Default Couting the number of referrences that...

You're welcome!

Biff

"speakers_86"
wrote in message
...

you rock. thanks biff


--
speakers_86
------------------------------------------------------------------------
speakers_86's Profile:
http://www.excelforum.com/member.php...o&userid=36839
View this thread: http://www.excelforum.com/showthread...hreadid=565463



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
Excell-How to add the number of cells containing text? = a sum aruba64taw Excel Worksheet Functions 2 December 21st 05 09:51 AM
Generating (in a random order)each number once from a given number Neil Goldwasser Excel Worksheet Functions 2 December 2nd 05 11:27 PM
Change number format from text to number? Scot New Users to Excel 2 December 1st 05 04:15 PM
vlookup with more than number to be retrieved martelie Excel Worksheet Functions 3 October 14th 05 12:50 PM
Count Number of Characters in a cell? AHJuncti Excel Discussion (Misc queries) 2 June 16th 05 07:39 PM


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

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

About Us

"It's about Microsoft Excel"