#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default COUNTIF

Need a COUNT of how many loans were either Booked OR Cancelled within the
Central Division. Alternately - need a COUNT of how many loans were
Declined in the Central Division.

I have tried this, but now out of options - Help!

=COUNTIF(AND($F$F1500, "Booked"OR"Cancelled", $B$2:$B$1500, "Central")
--
Pappas
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 174
Default COUNTIF

Hi Pappas,

Try something like ...

=COUNTIF(range_central_division,"Booked")+COUNTIF( range_central_division,"Cancelled")
=COUNTIF(range_central_division,"Declined")

Wkr,

JP


"Pappas" . wrote in message
...
Need a COUNT of how many loans were either Booked OR Cancelled within the
Central Division. Alternately - need a COUNT of how many loans were
Declined in the Central Division.

I have tried this, but now out of options - Help!

=COUNTIF(AND($F$F1500, "Booked"OR"Cancelled", $B$2:$B$1500, "Central")
--
Pappas



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,346
Default COUNTIF

Hi

Try

=SUMPRODUCT(((F1:F1500="Booked")+(F1:F1500="Cancel led"))*(B1:B1500="central"))

Add absolute references as needed, note your sample formula is missing the
row for the first F and the two ranges are not equal - the second starts on
row 2 - they need to be the same length.

--
If this helps, please click the Yes button.

Cheers,
Shane Devenshire


"Pappas" wrote:

Need a COUNT of how many loans were either Booked OR Cancelled within the
Central Division. Alternately - need a COUNT of how many loans were
Declined in the Central Division.

I have tried this, but now out of options - Help!

=COUNTIF(AND($F$F1500, "Booked"OR"Cancelled", $B$2:$B$1500, "Central")
--
Pappas

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,346
Default COUNTIF

You can use Don's version but you must make the changes I mentioned:

=SUMPRODUCT((B1:B13="central")*(F1:F13={"Cancelled ","Booked"}))

--
If this helps, please click the Yes button.

Cheers,
Shane Devenshire


"Shane Devenshire" wrote:

Hi

Try

=SUMPRODUCT(((F1:F1500="Booked")+(F1:F1500="Cancel led"))*(B1:B1500="central"))

Add absolute references as needed, note your sample formula is missing the
row for the first F and the two ranges are not equal - the second starts on
row 2 - they need to be the same length.

--
If this helps, please click the Yes button.

Cheers,
Shane Devenshire


"Pappas" wrote:

Need a COUNT of how many loans were either Booked OR Cancelled within the
Central Division. Alternately - need a COUNT of how many loans were
Declined in the Central Division.

I have tried this, but now out of options - Help!

=COUNTIF(AND($F$F1500, "Booked"OR"Cancelled", $B$2:$B$1500, "Central")
--
Pappas



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default COUNTIF

All suggestions worked beautifully; however, it was only part of my formula .
.. . . this is what I have come up with so far . . . . now I need help with
just the last part underlined.

=SUMPRODUCT((($F$2:$F$1500={" Booked"," Cancelled"})*($B$2:$B$1500=" North
Mississippi")*(($E$2:$E$150033%)*(F21500<=35.99%) )))
______________________________________

I need to add one additional . . . if between 33% and 35.99% . . . . but
the result is wrong - so I am know I am not doing something right.

Thanks!!!
Pappas


--
Pappas


"Shane Devenshire" wrote:

You can use Don's version but you must make the changes I mentioned:

=SUMPRODUCT((B1:B13="central")*(F1:F13={"Cancelled ","Booked"}))

--
If this helps, please click the Yes button.

Cheers,
Shane Devenshire


"Shane Devenshire" wrote:

Hi

Try

=SUMPRODUCT(((F1:F1500="Booked")+(F1:F1500="Cancel led"))*(B1:B1500="central"))

Add absolute references as needed, note your sample formula is missing the
row for the first F and the two ranges are not equal - the second starts on
row 2 - they need to be the same length.

--
If this helps, please click the Yes button.

Cheers,
Shane Devenshire


"Pappas" wrote:

Need a COUNT of how many loans were either Booked OR Cancelled within the
Central Division. Alternately - need a COUNT of how many loans were
Declined in the Central Division.

I have tried this, but now out of options - Help!

=COUNTIF(AND($F$F1500, "Booked"OR"Cancelled", $B$2:$B$1500, "Central")
--
Pappas

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

Jp Ronse, Don Guillett, & Shane . . . . Thanks for the initial HELP - It
worked Beautifully!!!!! However on my reply - Nevermind - I figured it
out - Thanks again!!!!

This is what I came up with and it worked great!!!! Thank you!!!

=SUMPRODUCT((($F$2:$F$1500={" Booked"," Cancelled"})*($B$2:$B$1500=" North
Mississippi")*(($E$2:$E$150030%)*($E$2:$E$1500<=3 2.99%))))

--
Pappas


"Pappas" wrote:

All suggestions worked beautifully; however, it was only part of my formula .
. . . this is what I have come up with so far . . . . now I need help with
just the last part underlined.

=SUMPRODUCT((($F$2:$F$1500={" Booked"," Cancelled"})*($B$2:$B$1500=" North
Mississippi")*(($E$2:$E$150033%)*(F21500<=35.99%) )))
______________________________________

I need to add one additional . . . if between 33% and 35.99% . . . . but
the result is wrong - so I am know I am not doing something right.

Thanks!!!
Pappas


--
Pappas


"Shane Devenshire" wrote:

You can use Don's version but you must make the changes I mentioned:

=SUMPRODUCT((B1:B13="central")*(F1:F13={"Cancelled ","Booked"}))

--
If this helps, please click the Yes button.

Cheers,
Shane Devenshire


"Shane Devenshire" wrote:

Hi

Try

=SUMPRODUCT(((F1:F1500="Booked")+(F1:F1500="Cancel led"))*(B1:B1500="central"))

Add absolute references as needed, note your sample formula is missing the
row for the first F and the two ranges are not equal - the second starts on
row 2 - they need to be the same length.

--
If this helps, please click the Yes button.

Cheers,
Shane Devenshire


"Pappas" wrote:

Need a COUNT of how many loans were either Booked OR Cancelled within the
Central Division. Alternately - need a COUNT of how many loans were
Declined in the Central Division.

I have tried this, but now out of options - Help!

=COUNTIF(AND($F$F1500, "Booked"OR"Cancelled", $B$2:$B$1500, "Central")
--
Pappas

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
How do I use a countif function according to two other countif fu. Kirsty Excel Worksheet Functions 2 February 20th 06 11:44 AM
edit this =COUNTIF(A1:F16,"*1-2*")+COUNTIF(A1:F16,"*2-1*") sctroy Excel Discussion (Misc queries) 2 September 25th 05 04:13 AM
COUNTIF or not to COUNTIF on a range in another sheet Ellie Excel Worksheet Functions 4 September 15th 05 10:06 PM
Need a little help w/ COUNTIF CampFriendNeedsHelp Excel Worksheet Functions 1 July 29th 05 10:33 PM
COUNTIF in one colum then COUNTIF in another...??? JonnieP Excel Worksheet Functions 3 February 22nd 05 02:55 PM


All times are GMT +1. The time now is 06:36 PM.

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"