Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 90
Default count if, but not if

=COUNTIF(B$3:B3,B3)

How do I make this, =COUNTIF(B$3:B3,B3) but not if C3 is "Inbound"?

Thank you.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,101
Default count if, but not if

=COUNTIF(B$3:B3,C3&"<Inbound")

"LiveUser" wrote:

=COUNTIF(B$3:B3,B3)

How do I make this, =COUNTIF(B$3:B3,B3) but not if C3 is "Inbound"?

Thank you.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,593
Default count if, but not if

=IF(C3<"Inbound",COUNTIF(B$3:B3,B3),"")

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"LiveUser" wrote in message
...
=COUNTIF(B$3:B3,B3)

How do I make this, =COUNTIF(B$3:B3,B3) but not if C3 is "Inbound"?

Thank you.



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 90
Default count if, but not if

Mike,

The formula did not work...

I tried a variation, but it did not work either.

=COUNTIF(B$3:B3,B3&C3"<Inbound")



"Mike" wrote:

=COUNTIF(B$3:B3,C3&"<Inbound")

"LiveUser" wrote:

=COUNTIF(B$3:B3,B3)

How do I make this, =COUNTIF(B$3:B3,B3) but not if C3 is "Inbound"?

Thank you.

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 90
Default count if, but not if

Thanks Bob.

Is there a way to make it so no number shows until "Outbound" is selected?

"Bob Phillips" wrote:

=IF(C3<"Inbound",COUNTIF(B$3:B3,B3),"")

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"LiveUser" wrote in message
...
=COUNTIF(B$3:B3,B3)

How do I make this, =COUNTIF(B$3:B3,B3) but not if C3 is "Inbound"?

Thank you.






  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,420
Default count if, but not if

Sorry mate, don't follow what you are asking here.

--
__________________________________
HTH

Bob

"LiveUser" wrote in message
...
Thanks Bob.

Is there a way to make it so no number shows until "Outbound" is selected?

"Bob Phillips" wrote:

=IF(C3<"Inbound",COUNTIF(B$3:B3,B3),"")

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my
addy)

"LiveUser" wrote in message
...
=COUNTIF(B$3:B3,B3)

How do I make this, =COUNTIF(B$3:B3,B3) but not if C3 is "Inbound"?

Thank you.






  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 90
Default count if, but not if

In C3 there is an option to choose Inbound or Outbound.

B C D
3 Orange
4 Apple Outbound 1
5 Orange Inbound
6 Orange Outbound 1
7 Orange Outbound 2
8 Apple Inbound
9 Grape



"Bob Phillips" wrote:

Sorry mate, don't follow what you are asking here.

--
__________________________________
HTH

Bob

"LiveUser" wrote in message
...
Thanks Bob.

Is there a way to make it so no number shows until "Outbound" is selected?

"Bob Phillips" wrote:

=IF(C3<"Inbound",COUNTIF(B$3:B3,B3),"")

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my
addy)

"LiveUser" wrote in message
...
=COUNTIF(B$3:B3,B3)

How do I make this, =COUNTIF(B$3:B3,B3) but not if C3 is "Inbound"?

Thank you.






  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,593
Default count if, but not if

Is this what you mean?

=IF(AND(C3<"Inbound",C3<""),SUMPRODUCT(--($B$3:B3=B3),--($C$3:C3=C3)),"")

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"LiveUser" wrote in message
...
In C3 there is an option to choose Inbound or Outbound.

B C D
3 Orange
4 Apple Outbound 1
5 Orange Inbound
6 Orange Outbound 1
7 Orange Outbound 2
8 Apple Inbound
9 Grape



"Bob Phillips" wrote:

Sorry mate, don't follow what you are asking here.

--
__________________________________
HTH

Bob

"LiveUser" wrote in message
...
Thanks Bob.

Is there a way to make it so no number shows until "Outbound" is
selected?

"Bob Phillips" wrote:

=IF(C3<"Inbound",COUNTIF(B$3:B3,B3),"")

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my
addy)

"LiveUser" wrote in message
...
=COUNTIF(B$3:B3,B3)

How do I make this, =COUNTIF(B$3:B3,B3) but not if C3 is "Inbound"?

Thank you.








  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 90
Default count if, but not if

Yes, Thank you.

"Bob Phillips" wrote:

Is this what you mean?

=IF(AND(C3<"Inbound",C3<""),SUMPRODUCT(--($B$3:B3=B3),--($C$3:C3=C3)),"")

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"LiveUser" wrote in message
...
In C3 there is an option to choose Inbound or Outbound.

B C D
3 Orange
4 Apple Outbound 1
5 Orange Inbound
6 Orange Outbound 1
7 Orange Outbound 2
8 Apple Inbound
9 Grape



"Bob Phillips" wrote:

Sorry mate, don't follow what you are asking here.

--
__________________________________
HTH

Bob

"LiveUser" wrote in message
...
Thanks Bob.

Is there a way to make it so no number shows until "Outbound" is
selected?

"Bob Phillips" wrote:

=IF(C3<"Inbound",COUNTIF(B$3:B3,B3),"")

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my
addy)

"LiveUser" wrote in message
...
=COUNTIF(B$3:B3,B3)

How do I make this, =COUNTIF(B$3:B3,B3) but not if C3 is "Inbound"?

Thank you.









  #10   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 21
Default count if, but not if

Bob,

Can you tell me what the double dashes (--) mean?
--
Sociopath


"Bob Phillips" wrote:

Is this what you mean?

=IF(AND(C3<"Inbound",C3<""),SUMPRODUCT(--($B$3:B3=B3),--($C$3:C3=C3)),"")

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"LiveUser" wrote in message
...
In C3 there is an option to choose Inbound or Outbound.

B C D
3 Orange
4 Apple Outbound 1
5 Orange Inbound
6 Orange Outbound 1
7 Orange Outbound 2
8 Apple Inbound
9 Grape



"Bob Phillips" wrote:

Sorry mate, don't follow what you are asking here.

--
__________________________________
HTH

Bob

"LiveUser" wrote in message
...
Thanks Bob.

Is there a way to make it so no number shows until "Outbound" is
selected?

"Bob Phillips" wrote:

=IF(C3<"Inbound",COUNTIF(B$3:B3,B3),"")

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my
addy)

"LiveUser" wrote in message
...
=COUNTIF(B$3:B3,B3)

How do I make this, =COUNTIF(B$3:B3,B3) but not if C3 is "Inbound"?

Thank you.











  #11   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 21
Default count if, but not if

Bob,

Would you tell me please what the double dashes (--) mean?
--
Sociopath


"Bob Phillips" wrote:

Is this what you mean?

=IF(AND(C3<"Inbound",C3<""),SUMPRODUCT(--($B$3:B3=B3),--($C$3:C3=C3)),"")

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"LiveUser" wrote in message
...
In C3 there is an option to choose Inbound or Outbound.

B C D
3 Orange
4 Apple Outbound 1
5 Orange Inbound
6 Orange Outbound 1
7 Orange Outbound 2
8 Apple Inbound
9 Grape



"Bob Phillips" wrote:

Sorry mate, don't follow what you are asking here.

--
__________________________________
HTH

Bob

"LiveUser" wrote in message
...
Thanks Bob.

Is there a way to make it so no number shows until "Outbound" is
selected?

"Bob Phillips" wrote:

=IF(C3<"Inbound",COUNTIF(B$3:B3,B3),"")

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my
addy)

"LiveUser" wrote in message
...
=COUNTIF(B$3:B3,B3)

How do I make this, =COUNTIF(B$3:B3,B3) but not if C3 is "Inbound"?

Thank you.









  #12   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default count if, but not if

See this:

http://xldynamic.com/source/xld.SUMPRODUCT.html

--
Biff
Microsoft Excel MVP


"SwearBear" wrote in message
...
Bob,

Can you tell me what the double dashes (--) mean?
--
Sociopath


"Bob Phillips" wrote:

Is this what you mean?

=IF(AND(C3<"Inbound",C3<""),SUMPRODUCT(--($B$3:B3=B3),--($C$3:C3=C3)),"")

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my
addy)

"LiveUser" wrote in message
...
In C3 there is an option to choose Inbound or Outbound.

B C D
3 Orange
4 Apple Outbound 1
5 Orange Inbound
6 Orange Outbound 1
7 Orange Outbound 2
8 Apple Inbound
9 Grape



"Bob Phillips" wrote:

Sorry mate, don't follow what you are asking here.

--
__________________________________
HTH

Bob

"LiveUser" wrote in message
...
Thanks Bob.

Is there a way to make it so no number shows until "Outbound" is
selected?

"Bob Phillips" wrote:

=IF(C3<"Inbound",COUNTIF(B$3:B3,B3),"")

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in
my
addy)

"LiveUser" wrote in message
...
=COUNTIF(B$3:B3,B3)

How do I make this, =COUNTIF(B$3:B3,B3) but not if C3 is
"Inbound"?

Thank you.











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
Count Employee Work Time - Don't Double-count Overlapping Apts. J Excel Worksheet Functions 0 April 27th 07 05:52 AM
Excel 2000, count, sort a list & count totals? sunslight Excel Worksheet Functions 1 April 9th 07 05:46 PM
Count Intervals of 1 Numeric value in a Row and Return Count down Column Sam via OfficeKB.com Excel Worksheet Functions 8 October 4th 05 04:37 PM
Count Intervals of 2 Numeric values in same Row and Return Count across Row Sam via OfficeKB.com Excel Worksheet Functions 12 September 24th 05 10:58 PM
Count Intervals of Filtered TEXT values in Column and Return Count across a Row Sam via OfficeKB.com Excel Worksheet Functions 9 July 31st 05 03:37 AM


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

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"