PC Review


Reply
Thread Tools Rate Thread

Counting & Conditions

 
 
Khalil Handal
Guest
Posts: n/a
 
      16th Feb 2007
Hi to evrybody,
I have 13 cells in the same row as follows:
J14, M14, P14, S14, V14, Y14, AB14, AE14, AH14, AK14, AN14, AQ14, AT14
Each of them contains a number which is a result from a calculation.

In Cell BD14, I want a value depending on the number of cells with the
following condition (counting):

If any 4 or more of the 13 cells has a number < 50 ---> put "Very Slow" in
cell DB14
If none of the cells has number < 50 ---> put "Very Fast" in cell BD14
If LESS than 4 cells has number < 50 ---> put "Moderate" in cell BD14

Any suggestions


 
Reply With Quote
 
 
 
 
KC Rippstein
Guest
Posts: n/a
 
      16th Feb 2007
Probably not a "power user" solution, but what the heck.
In BF14, put =J14, in BG14 =M14, and so on...this gives the data you want in
one contiguous range.
In BE14, put =COUNTIF(BF14:BR14,"<50")
In BD14, put =IF(BE14>3,"Very Slow",IF(BE14=0,"Very
Fast",IF(OR(BE14=1,BE14=2,BE14=3),"Moderate",NA())))
This will allow you to use this structure on any row.
-KC

"Khalil Handal" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hi to evrybody,
> I have 13 cells in the same row as follows:
> J14, M14, P14, S14, V14, Y14, AB14, AE14, AH14, AK14, AN14, AQ14, AT14
> Each of them contains a number which is a result from a calculation.
>
> In Cell BD14, I want a value depending on the number of cells with the
> following condition (counting):
>
> If any 4 or more of the 13 cells has a number < 50 ---> put "Very Slow" in
> cell DB14
> If none of the cells has number < 50 ---> put "Very Fast" in cell BD14
> If LESS than 4 cells has number < 50 ---> put "Moderate" in cell BD14
>
> Any suggestions
>
>



 
Reply With Quote
 
Khalil Handal
Guest
Posts: n/a
 
      16th Feb 2007
I'll try it ! thank you

"KC Rippstein" <kcrippsteinAThotmailDOTcom> wrote in message
news:%(E-Mail Removed)...
> Probably not a "power user" solution, but what the heck.
> In BF14, put =J14, in BG14 =M14, and so on...this gives the data you want
> in one contiguous range.
> In BE14, put =COUNTIF(BF14:BR14,"<50")
> In BD14, put =IF(BE14>3,"Very Slow",IF(BE14=0,"Very
> Fast",IF(OR(BE14=1,BE14=2,BE14=3),"Moderate",NA())))
> This will allow you to use this structure on any row.
> -KC
>
> "Khalil Handal" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Hi to evrybody,
>> I have 13 cells in the same row as follows:
>> J14, M14, P14, S14, V14, Y14, AB14, AE14, AH14, AK14, AN14, AQ14, AT14
>> Each of them contains a number which is a result from a calculation.
>>
>> In Cell BD14, I want a value depending on the number of cells with the
>> following condition (counting):
>>
>> If any 4 or more of the 13 cells has a number < 50 ---> put "Very Slow"
>> in cell DB14
>> If none of the cells has number < 50 ---> put "Very Fast" in cell BD14
>> If LESS than 4 cells has number < 50 ---> put "Moderate" in cell BD14
>>
>> Any suggestions
>>
>>

>
>



 
Reply With Quote
 
Bob Phillips
Guest
Posts: n/a
 
      16th Feb 2007
=IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14<>""),--(J14:AT14<50))=0,"Very
Fast",
IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14<>""),--(J14:AT14<50))<4,"Moderate","Very
Slow"))

--
---
HTH

Bob

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



"Khalil Handal" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hi to evrybody,
> I have 13 cells in the same row as follows:
> J14, M14, P14, S14, V14, Y14, AB14, AE14, AH14, AK14, AN14, AQ14, AT14
> Each of them contains a number which is a result from a calculation.
>
> In Cell BD14, I want a value depending on the number of cells with the
> following condition (counting):
>
> If any 4 or more of the 13 cells has a number < 50 ---> put "Very Slow" in
> cell DB14
> If none of the cells has number < 50 ---> put "Very Fast" in cell BD14
> If LESS than 4 cells has number < 50 ---> put "Moderate" in cell BD14
>
> Any suggestions
>
>



 
Reply With Quote
 
Khalil Handal
Guest
Posts: n/a
 
      21st Feb 2007
thanks a lot it worked fine.
Is it possible to adjust it so as nothing is shown in the cells if any of
the mentioned cells is blank (no values), the range was:
J14, M14, P14, S14, V14, Y14, AB14, AE14, AH14, AK14, AN14, AQ14, AT14
Thanks


"Bob Phillips" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> =IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14<>""),--(J14:AT14<50))=0,"Very
> Fast",
> IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14<>""),--(J14:AT14<50))<4,"Moderate","Very
> Slow"))
>
> --
> ---
> HTH
>
> Bob
>
> (there's no email, no snail mail, but somewhere should be gmail in my
> addy)
>
>
>
> "Khalil Handal" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Hi to evrybody,
>> I have 13 cells in the same row as follows:
>> J14, M14, P14, S14, V14, Y14, AB14, AE14, AH14, AK14, AN14, AQ14, AT14
>> Each of them contains a number which is a result from a calculation.
>>
>> In Cell BD14, I want a value depending on the number of cells with the
>> following condition (counting):
>>
>> If any 4 or more of the 13 cells has a number < 50 ---> put "Very Slow"
>> in cell DB14
>> If none of the cells has number < 50 ---> put "Very Fast" in cell BD14
>> If LESS than 4 cells has number < 50 ---> put "Moderate" in cell BD14
>>
>> Any suggestions
>>
>>

>
>



 
Reply With Quote
 
Bob Phillips
Guest
Posts: n/a
 
      21st Feb 2007
Do you mean

=IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14<>""),--(J14:AT14<50))=0,"",
IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14<>""),--(J14:AT14<50))<4,"Moderate","Very
Slow"))

--
---
HTH

Bob

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



"Khalil Handal" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> thanks a lot it worked fine.
> Is it possible to adjust it so as nothing is shown in the cells if any of
> the mentioned cells is blank (no values), the range was:
> J14, M14, P14, S14, V14, Y14, AB14, AE14, AH14, AK14, AN14, AQ14, AT14
> Thanks
>
>
> "Bob Phillips" <(E-Mail Removed)> wrote in message
> news:%(E-Mail Removed)...
>> =IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14<>""),--(J14:AT14<50))=0,"Very
>> Fast",
>> IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14<>""),--(J14:AT14<50))<4,"Moderate","Very
>> Slow"))
>>
>> --
>> ---
>> HTH
>>
>> Bob
>>
>> (there's no email, no snail mail, but somewhere should be gmail in my
>> addy)
>>
>>
>>
>> "Khalil Handal" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>>> Hi to evrybody,
>>> I have 13 cells in the same row as follows:
>>> J14, M14, P14, S14, V14, Y14, AB14, AE14, AH14, AK14, AN14, AQ14, AT14
>>> Each of them contains a number which is a result from a calculation.
>>>
>>> In Cell BD14, I want a value depending on the number of cells with the
>>> following condition (counting):
>>>
>>> If any 4 or more of the 13 cells has a number < 50 ---> put "Very Slow"
>>> in cell DB14
>>> If none of the cells has number < 50 ---> put "Very Fast" in cell BD14
>>> If LESS than 4 cells has number < 50 ---> put "Moderate" in cell BD14
>>>
>>> Any suggestions
>>>
>>>

>>
>>

>
>



 
Reply With Quote
 
Khalil Handal
Guest
Posts: n/a
 
      21st Feb 2007
Hi Bob,
I want to keep "very Fast";
The values are:
1- very fast if none of the values in cells is < 50
2- moderate if 1 , 2 , or 3 numbers only < 50
3- very slow if 4 or greater are < han 50
4- "" if any of the cells mentioned is empty .

Hope it is clear now

Khalil

"Bob Phillips" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Do you mean
>
> =IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14<>""),--(J14:AT14<50))=0,"",
> IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14<>""),--(J14:AT14<50))<4,"Moderate","Very
> Slow"))
>
> --
> ---
> HTH
>
> Bob
>
> (there's no email, no snail mail, but somewhere should be gmail in my
> addy)
>
>
>
> "Khalil Handal" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> thanks a lot it worked fine.
>> Is it possible to adjust it so as nothing is shown in the cells if any of
>> the mentioned cells is blank (no values), the range was:
>> J14, M14, P14, S14, V14, Y14, AB14, AE14, AH14, AK14, AN14, AQ14, AT14
>> Thanks
>>
>>
>> "Bob Phillips" <(E-Mail Removed)> wrote in message
>> news:%(E-Mail Removed)...
>>> =IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14<>""),--(J14:AT14<50))=0,"Very
>>> Fast",
>>> IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14<>""),--(J14:AT14<50))<4,"Moderate","Very
>>> Slow"))
>>>
>>> --
>>> ---
>>> HTH
>>>
>>> Bob
>>>
>>> (there's no email, no snail mail, but somewhere should be gmail in my
>>> addy)
>>>
>>>
>>>
>>> "Khalil Handal" <(E-Mail Removed)> wrote in message
>>> news:(E-Mail Removed)...
>>>> Hi to evrybody,
>>>> I have 13 cells in the same row as follows:
>>>> J14, M14, P14, S14, V14, Y14, AB14, AE14, AH14, AK14, AN14, AQ14, AT14
>>>> Each of them contains a number which is a result from a calculation.
>>>>
>>>> In Cell BD14, I want a value depending on the number of cells with the
>>>> following condition (counting):
>>>>
>>>> If any 4 or more of the 13 cells has a number < 50 ---> put "Very Slow"
>>>> in cell DB14
>>>> If none of the cells has number < 50 ---> put "Very Fast" in cell BD14
>>>> If LESS than 4 cells has number < 50 ---> put "Moderate" in cell BD14
>>>>
>>>> Any suggestions
>>>>
>>>>
>>>
>>>

>>
>>

>
>



 
Reply With Quote
 
Bob Phillips
Guest
Posts: n/a
 
      21st Feb 2007
Does this do it?

=IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14=""))>0,"",
IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14<>""),--(J14:AT14<50))=0,"Very
Fast",
IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14<>""),--(J14:AT14<50))<4,"Moderate","Very
Slow")))

--
---
HTH

Bob

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



"Khalil Handal" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hi Bob,
> I want to keep "very Fast";
> The values are:
> 1- very fast if none of the values in cells is < 50
> 2- moderate if 1 , 2 , or 3 numbers only < 50
> 3- very slow if 4 or greater are < han 50
> 4- "" if any of the cells mentioned is empty .
>
> Hope it is clear now
>
> Khalil
>
> "Bob Phillips" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Do you mean
>>
>> =IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14<>""),--(J14:AT14<50))=0,"",
>> IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14<>""),--(J14:AT14<50))<4,"Moderate","Very
>> Slow"))
>>
>> --
>> ---
>> HTH
>>
>> Bob
>>
>> (there's no email, no snail mail, but somewhere should be gmail in my
>> addy)
>>
>>
>>
>> "Khalil Handal" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>>> thanks a lot it worked fine.
>>> Is it possible to adjust it so as nothing is shown in the cells if any
>>> of the mentioned cells is blank (no values), the range was:
>>> J14, M14, P14, S14, V14, Y14, AB14, AE14, AH14, AK14, AN14, AQ14, AT14
>>> Thanks
>>>
>>>
>>> "Bob Phillips" <(E-Mail Removed)> wrote in message
>>> news:%(E-Mail Removed)...
>>>> =IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14<>""),--(J14:AT14<50))=0,"Very
>>>> Fast",
>>>> IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14<>""),--(J14:AT14<50))<4,"Moderate","Very
>>>> Slow"))
>>>>
>>>> --
>>>> ---
>>>> HTH
>>>>
>>>> Bob
>>>>
>>>> (there's no email, no snail mail, but somewhere should be gmail in my
>>>> addy)
>>>>
>>>>
>>>>
>>>> "Khalil Handal" <(E-Mail Removed)> wrote in message
>>>> news:(E-Mail Removed)...
>>>>> Hi to evrybody,
>>>>> I have 13 cells in the same row as follows:
>>>>> J14, M14, P14, S14, V14, Y14, AB14, AE14, AH14, AK14, AN14, AQ14, AT14
>>>>> Each of them contains a number which is a result from a calculation.
>>>>>
>>>>> In Cell BD14, I want a value depending on the number of cells with
>>>>> the following condition (counting):
>>>>>
>>>>> If any 4 or more of the 13 cells has a number < 50 ---> put "Very
>>>>> Slow" in cell DB14
>>>>> If none of the cells has number < 50 ---> put "Very Fast" in cell BD14
>>>>> If LESS than 4 cells has number < 50 ---> put "Moderate" in cell BD14
>>>>>
>>>>> Any suggestions
>>>>>
>>>>>
>>>>
>>>>
>>>
>>>

>>
>>

>
>



 
Reply With Quote
 
Khalil Handal
Guest
Posts: n/a
 
      22nd Feb 2007
Yes it does. Thank you Bob.


"Bob Phillips" <(E-Mail Removed)> wrote in message
news:e%(E-Mail Removed)...
> Does this do it?
>
> =IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14=""))>0,"",
> IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14<>""),--(J14:AT14<50))=0,"Very
> Fast",
> IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14<>""),--(J14:AT14<50))<4,"Moderate","Very
> Slow")))
>
> --
> ---
> HTH
>
> Bob
>
> (there's no email, no snail mail, but somewhere should be gmail in my
> addy)
>
>
>
> "Khalil Handal" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Hi Bob,
>> I want to keep "very Fast";
>> The values are:
>> 1- very fast if none of the values in cells is < 50
>> 2- moderate if 1 , 2 , or 3 numbers only < 50
>> 3- very slow if 4 or greater are < han 50
>> 4- "" if any of the cells mentioned is empty .
>>
>> Hope it is clear now
>>
>> Khalil
>>
>> "Bob Phillips" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>>> Do you mean
>>>
>>> =IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14<>""),--(J14:AT14<50))=0,"",
>>> IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14<>""),--(J14:AT14<50))<4,"Moderate","Very
>>> Slow"))
>>>
>>> --
>>> ---
>>> HTH
>>>
>>> Bob
>>>
>>> (there's no email, no snail mail, but somewhere should be gmail in my
>>> addy)
>>>
>>>
>>>
>>> "Khalil Handal" <(E-Mail Removed)> wrote in message
>>> news:(E-Mail Removed)...
>>>> thanks a lot it worked fine.
>>>> Is it possible to adjust it so as nothing is shown in the cells if any
>>>> of the mentioned cells is blank (no values), the range was:
>>>> J14, M14, P14, S14, V14, Y14, AB14, AE14, AH14, AK14, AN14, AQ14, AT14
>>>> Thanks
>>>>
>>>>
>>>> "Bob Phillips" <(E-Mail Removed)> wrote in message
>>>> news:%(E-Mail Removed)...
>>>>> =IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14<>""),--(J14:AT14<50))=0,"Very
>>>>> Fast",
>>>>> IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14<>""),--(J14:AT14<50))<4,"Moderate","Very
>>>>> Slow"))
>>>>>
>>>>> --
>>>>> ---
>>>>> HTH
>>>>>
>>>>> Bob
>>>>>
>>>>> (there's no email, no snail mail, but somewhere should be gmail in my
>>>>> addy)
>>>>>
>>>>>
>>>>>
>>>>> "Khalil Handal" <(E-Mail Removed)> wrote in message
>>>>> news:(E-Mail Removed)...
>>>>>> Hi to evrybody,
>>>>>> I have 13 cells in the same row as follows:
>>>>>> J14, M14, P14, S14, V14, Y14, AB14, AE14, AH14, AK14, AN14, AQ14,
>>>>>> AT14
>>>>>> Each of them contains a number which is a result from a calculation.
>>>>>>
>>>>>> In Cell BD14, I want a value depending on the number of cells with
>>>>>> the following condition (counting):
>>>>>>
>>>>>> If any 4 or more of the 13 cells has a number < 50 ---> put "Very
>>>>>> Slow" in cell DB14
>>>>>> If none of the cells has number < 50 ---> put "Very Fast" in cell
>>>>>> BD14
>>>>>> If LESS than 4 cells has number < 50 ---> put "Moderate" in cell
>>>>>> BD14
>>>>>>
>>>>>> Any suggestions
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>
>>>

>>
>>

>
>



 
Reply With Quote
 
Khalil Handal
Guest
Posts: n/a
 
      22nd Feb 2007
Sorry to disturbe you again,
The formula is not giving very slow when more than 4 values are < 50.
I'am not sure if I miss something or not!
Khalil

"Bob Phillips" <(E-Mail Removed)> wrote in message
news:e%(E-Mail Removed)...
> Does this do it?
>
> =IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14=""))>0,"",
> IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14<>""),--(J14:AT14<50))=0,"Very
> Fast",
> IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14<>""),--(J14:AT14<50))<4,"Moderate","Very
> Slow")))
>
> --
> ---
> HTH
>
> Bob
>
> (there's no email, no snail mail, but somewhere should be gmail in my
> addy)
>
>
>
> "Khalil Handal" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Hi Bob,
>> I want to keep "very Fast";
>> The values are:
>> 1- very fast if none of the values in cells is < 50
>> 2- moderate if 1 , 2 , or 3 numbers only < 50
>> 3- very slow if 4 or greater are < han 50
>> 4- "" if any of the cells mentioned is empty .
>>
>> Hope it is clear now
>>
>> Khalil
>>
>> "Bob Phillips" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>>> Do you mean
>>>
>>> =IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14<>""),--(J14:AT14<50))=0,"",
>>> IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14<>""),--(J14:AT14<50))<4,"Moderate","Very
>>> Slow"))
>>>
>>> --
>>> ---
>>> HTH
>>>
>>> Bob
>>>
>>> (there's no email, no snail mail, but somewhere should be gmail in my
>>> addy)
>>>
>>>
>>>
>>> "Khalil Handal" <(E-Mail Removed)> wrote in message
>>> news:(E-Mail Removed)...
>>>> thanks a lot it worked fine.
>>>> Is it possible to adjust it so as nothing is shown in the cells if any
>>>> of the mentioned cells is blank (no values), the range was:
>>>> J14, M14, P14, S14, V14, Y14, AB14, AE14, AH14, AK14, AN14, AQ14, AT14
>>>> Thanks
>>>>
>>>>
>>>> "Bob Phillips" <(E-Mail Removed)> wrote in message
>>>> news:%(E-Mail Removed)...
>>>>> =IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14<>""),--(J14:AT14<50))=0,"Very
>>>>> Fast",
>>>>> IF(SUMPRODUCT(--(MOD(COLUMN(J14:AT14),4)=2),--(J14:AT14<>""),--(J14:AT14<50))<4,"Moderate","Very
>>>>> Slow"))
>>>>>
>>>>> --
>>>>> ---
>>>>> HTH
>>>>>
>>>>> Bob
>>>>>
>>>>> (there's no email, no snail mail, but somewhere should be gmail in my
>>>>> addy)
>>>>>
>>>>>
>>>>>
>>>>> "Khalil Handal" <(E-Mail Removed)> wrote in message
>>>>> news:(E-Mail Removed)...
>>>>>> Hi to evrybody,
>>>>>> I have 13 cells in the same row as follows:
>>>>>> J14, M14, P14, S14, V14, Y14, AB14, AE14, AH14, AK14, AN14, AQ14,
>>>>>> AT14
>>>>>> Each of them contains a number which is a result from a calculation.
>>>>>>
>>>>>> In Cell BD14, I want a value depending on the number of cells with
>>>>>> the following condition (counting):
>>>>>>
>>>>>> If any 4 or more of the 13 cells has a number < 50 ---> put "Very
>>>>>> Slow" in cell DB14
>>>>>> If none of the cells has number < 50 ---> put "Very Fast" in cell
>>>>>> BD14
>>>>>> If LESS than 4 cells has number < 50 ---> put "Moderate" in cell
>>>>>> BD14
>>>>>>
>>>>>> Any suggestions
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>
>>>

>>
>>

>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Counting with Conditions but Only Once LindsE Microsoft Excel Misc 8 22nd Oct 2009 12:52 PM
Counting with 2 Conditions TomP Microsoft Access Reports 2 27th Dec 2007 03:35 PM
counting with three conditions =?Utf-8?B?THVjYXMgU29sZXI=?= Microsoft Excel Programming 2 19th Dec 2005 09:47 PM
Counting on Two conditions RFJ Microsoft Excel Worksheet Functions 1 22nd Apr 2004 09:55 AM
Counting under conditions JDT Microsoft Excel Misc 1 20th Aug 2003 09:16 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 12:05 PM.