#1   Report Post  
Posted to microsoft.public.excel.misc
Geo Geo is offline
external usenet poster
 
Posts: 66
Default Criteria question

I have the following formula:

=MIN((I18),I16)

How do I add a criteria "Medical" from column "D"
--
Geo
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,268
Default Criteria question

What does that mean, which cell holds Medical? Also no need for an extra
parenthesis in your formula

=MIN(I18,I16)



--


Regards,


Peo Sjoblom


"Geo" wrote in message
...
I have the following formula:

=MIN((I18),I16)

How do I add a criteria "Medical" from column "D"
--
Geo



  #3   Report Post  
Posted to microsoft.public.excel.misc
Geo Geo is offline
external usenet poster
 
Posts: 66
Default Criteria question

Thanks
Medical is one of the criterias and is inserted in rows D11 to D5000, in
rows E11 to E5000 is a figure, which the sum total is found in cell I18.
The formula is in cell I20 which sums total for Medical under a figure in
cell I16 (variable fugure).
--
Geo


"Peo Sjoblom" wrote:

What does that mean, which cell holds Medical? Also no need for an extra
parenthesis in your formula

=MIN(I18,I16)



--


Regards,


Peo Sjoblom


"Geo" wrote in message
...
I have the following formula:

=MIN((I18),I16)

How do I add a criteria "Medical" from column "D"
--
Geo




  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,268
Default Criteria question

=MIN(IF(D11:D5000="Medical",E11:E5000))

entered with ctrl + shift & enter

if you want to test it against I16 then use

=MIN(MIN(IF(D11:D5000="Medical",E11:E5000)),I16)


also array entered


--


Regards,


Peo Sjoblom



"Geo" wrote in message
...
Thanks
Medical is one of the criterias and is inserted in rows D11 to D5000, in
rows E11 to E5000 is a figure, which the sum total is found in cell I18.
The formula is in cell I20 which sums total for Medical under a figure in
cell I16 (variable fugure).
--
Geo


"Peo Sjoblom" wrote:

What does that mean, which cell holds Medical? Also no need for an extra
parenthesis in your formula

=MIN(I18,I16)



--


Regards,


Peo Sjoblom


"Geo" wrote in message
...
I have the following formula:

=MIN((I18),I16)

How do I add a criteria "Medical" from column "D"
--
Geo






  #5   Report Post  
Posted to microsoft.public.excel.misc
Geo Geo is offline
external usenet poster
 
Posts: 66
Default Criteria question

Thanks Peo for thank,
But it's not working, it gives me the smallest figure entered, I need the
sum of entries for "medical" under the reference figure in I16.
--
Geo


"Peo Sjoblom" wrote:

=MIN(IF(D11:D5000="Medical",E11:E5000))

entered with ctrl + shift & enter

if you want to test it against I16 then use

=MIN(MIN(IF(D11:D5000="Medical",E11:E5000)),I16)


also array entered


--


Regards,


Peo Sjoblom



"Geo" wrote in message
...
Thanks
Medical is one of the criterias and is inserted in rows D11 to D5000, in
rows E11 to E5000 is a figure, which the sum total is found in cell I18.
The formula is in cell I20 which sums total for Medical under a figure in
cell I16 (variable fugure).
--
Geo


"Peo Sjoblom" wrote:

What does that mean, which cell holds Medical? Also no need for an extra
parenthesis in your formula

=MIN(I18,I16)



--


Regards,


Peo Sjoblom


"Geo" wrote in message
...
I have the following formula:

=MIN((I18),I16)

How do I add a criteria "Medical" from column "D"
--
Geo








  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,268
Default Criteria question

Are you saying that you want to SUM E11:E5000 where D11:D500 = Medical but
you only want to add those values less than or equal to I16? Given what you
posted in your first post I would say that was impossible to guess.

=SUMPRODUCT(--(D11:D5000="Medical"),--(E11:E5000<=I16),E11:E5000)

for values less than I16


=SUMPRODUCT(--(D11:D5000="Medical"),--(E11:E5000<I16),E11:E5000)

greater than or equal to I16


=SUMPRODUCT(--(D11:D5000="Medical"),--(E11:E5000=I16),E11:E5000)


greater than

=SUMPRODUCT(--(D11:D5000="Medical"),--(E11:E5000I16),E11:E5000)


--


Regards,


Peo Sjoblom



"Geo" wrote in message
...
Thanks Peo for thank,
But it's not working, it gives me the smallest figure entered, I need the
sum of entries for "medical" under the reference figure in I16.
--
Geo


"Peo Sjoblom" wrote:

=MIN(IF(D11:D5000="Medical",E11:E5000))

entered with ctrl + shift & enter

if you want to test it against I16 then use

=MIN(MIN(IF(D11:D5000="Medical",E11:E5000)),I16)


also array entered


--


Regards,


Peo Sjoblom



"Geo" wrote in message
...
Thanks
Medical is one of the criterias and is inserted in rows D11 to D5000,
in
rows E11 to E5000 is a figure, which the sum total is found in cell
I18.
The formula is in cell I20 which sums total for Medical under a figure
in
cell I16 (variable fugure).
--
Geo


"Peo Sjoblom" wrote:

What does that mean, which cell holds Medical? Also no need for an
extra
parenthesis in your formula

=MIN(I18,I16)



--


Regards,


Peo Sjoblom


"Geo" wrote in message
...
I have the following formula:

=MIN((I18),I16)

How do I add a criteria "Medical" from column "D"
--
Geo








  #7   Report Post  
Posted to microsoft.public.excel.misc
Geo Geo is offline
external usenet poster
 
Posts: 66
Default Criteria question

Thank you very much.
That works great, sorry about the vague notes.
--
Geo


"Peo Sjoblom" wrote:

Are you saying that you want to SUM E11:E5000 where D11:D500 = Medical but
you only want to add those values less than or equal to I16? Given what you
posted in your first post I would say that was impossible to guess.

=SUMPRODUCT(--(D11:D5000="Medical"),--(E11:E5000<=I16),E11:E5000)

for values less than I16


=SUMPRODUCT(--(D11:D5000="Medical"),--(E11:E5000<I16),E11:E5000)

greater than or equal to I16


=SUMPRODUCT(--(D11:D5000="Medical"),--(E11:E5000=I16),E11:E5000)


greater than

=SUMPRODUCT(--(D11:D5000="Medical"),--(E11:E5000I16),E11:E5000)


--


Regards,


Peo Sjoblom



"Geo" wrote in message
...
Thanks Peo for thank,
But it's not working, it gives me the smallest figure entered, I need the
sum of entries for "medical" under the reference figure in I16.
--
Geo


"Peo Sjoblom" wrote:

=MIN(IF(D11:D5000="Medical",E11:E5000))

entered with ctrl + shift & enter

if you want to test it against I16 then use

=MIN(MIN(IF(D11:D5000="Medical",E11:E5000)),I16)


also array entered


--


Regards,


Peo Sjoblom



"Geo" wrote in message
...
Thanks
Medical is one of the criterias and is inserted in rows D11 to D5000,
in
rows E11 to E5000 is a figure, which the sum total is found in cell
I18.
The formula is in cell I20 which sums total for Medical under a figure
in
cell I16 (variable fugure).
--
Geo


"Peo Sjoblom" wrote:

What does that mean, which cell holds Medical? Also no need for an
extra
parenthesis in your formula

=MIN(I18,I16)



--


Regards,


Peo Sjoblom


"Geo" wrote in message
...
I have the following formula:

=MIN((I18),I16)

How do I add a criteria "Medical" from column "D"
--
Geo









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
Question about using SUM with a date criteria Michael Slater New Users to Excel 3 October 25th 07 03:31 PM
=DMIN(database,field,criteria) question about criteria Dummy Excel Discussion (Misc queries) 2 April 16th 07 08:02 PM
Criteria based sum question masik Excel Discussion (Misc queries) 6 June 7th 06 07:30 AM
SUMIF Question Criteria Dave Excel Worksheet Functions 3 February 8th 06 12:48 PM
query criteria question Dcbrown428 Excel Discussion (Misc queries) 1 November 18th 05 05:20 PM


All times are GMT +1. The time now is 04:02 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"