Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 59
Default How calculate a MIN excluding the 0 values

Hello,

I would need some help.
Can someone tell me which formula i have to use in order to calculate the
MIN value on column B excluding the 0 values?


A B
day 1 1.25
day 2 1.22
day 3 1.1
day 4 1.11
day 5 1.09
day 6 1.06
day 7 0
day 8 1.01
day 9 1.02
day 10 0.99
day 11 0.95
day 12 0.9
day 13 0
day 14 0.85
day 15 0
day 16 0.87
day 17 0
day 18 1.1
day 19 1.2
day 20 0.75
day 21 0.9
day 22 0
day 23 0.75
day 24 0.76
day 25 0
day 26 0.5

Thanks for your help

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default How calculate a MIN excluding the 0 values

Hi,

Try this

=MIN(IF(B1:B40<0,B1:B40,FALSE))

Which is an array so commit with CTRL+Shift+Enter nt just enter. If you do
it correctly Excel will put curly barckets around the formula {}. You can't
type these yourself.

Mike

"jimmy" wrote:

Hello,

I would need some help.
Can someone tell me which formula i have to use in order to calculate the
MIN value on column B excluding the 0 values?


A B
day 1 1.25
day 2 1.22
day 3 1.1
day 4 1.11
day 5 1.09
day 6 1.06
day 7 0
day 8 1.01
day 9 1.02
day 10 0.99
day 11 0.95
day 12 0.9
day 13 0
day 14 0.85
day 15 0
day 16 0.87
day 17 0
day 18 1.1
day 19 1.2
day 20 0.75
day 21 0.9
day 22 0
day 23 0.75
day 24 0.76
day 25 0
day 26 0.5

Thanks for your help

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,058
Default How calculate a MIN excluding the 0 values

=AVERAGE(IF(B1:B26<0,B1:B26))
as an array formula entered with
CNTRL-SHFT-ENTER
rather than just the
ENTER
key
--
Gary''s Student - gsnu200803


"jimmy" wrote:

Hello,

I would need some help.
Can someone tell me which formula i have to use in order to calculate the
MIN value on column B excluding the 0 values?


A B
day 1 1.25
day 2 1.22
day 3 1.1
day 4 1.11
day 5 1.09
day 6 1.06
day 7 0
day 8 1.01
day 9 1.02
day 10 0.99
day 11 0.95
day 12 0.9
day 13 0
day 14 0.85
day 15 0
day 16 0.87
day 17 0
day 18 1.1
day 19 1.2
day 20 0.75
day 21 0.9
day 22 0
day 23 0.75
day 24 0.76
day 25 0
day 26 0.5

Thanks for your help

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 59
Default How calculate a MIN excluding the 0 values

Tanks Mike H.
It works now.


"Mike H" escreveu:

Hi,

Try this

=MIN(IF(B1:B40<0,B1:B40,FALSE))

Which is an array so commit with CTRL+Shift+Enter nt just enter. If you do
it correctly Excel will put curly barckets around the formula {}. You can't
type these yourself.

Mike

"jimmy" wrote:

Hello,

I would need some help.
Can someone tell me which formula i have to use in order to calculate the
MIN value on column B excluding the 0 values?


A B
day 1 1.25
day 2 1.22
day 3 1.1
day 4 1.11
day 5 1.09
day 6 1.06
day 7 0
day 8 1.01
day 9 1.02
day 10 0.99
day 11 0.95
day 12 0.9
day 13 0
day 14 0.85
day 15 0
day 16 0.87
day 17 0
day 18 1.1
day 19 1.2
day 20 0.75
day 21 0.9
day 22 0
day 23 0.75
day 24 0.76
day 25 0
day 26 0.5

Thanks for your help



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 747
Default How calculate a MIN excluding the 0 values

Try this one

=SMALL(B1:B30,COUNTIF(B1:B30,0)+1)



On Sep 10, 9:55*am, jimmy wrote:
Hello,

I would need some help.
Can someone tell me which formula i have to use in order to calculate the
MIN value on column B excluding the 0 values?

A * * * * * * *B
day 1 * 1.25
day 2 * 1.22
day 3 * 1.1
day 4 * 1.11
day 5 * 1.09
day 6 * 1.06
day 7 * 0
day 8 * 1.01
day 9 * 1.02
day 10 *0.99
day 11 *0.95
day 12 *0.9
day 13 *0
day 14 *0.85
day 15 *0
day 16 *0.87
day 17 *0
day 18 *1.1
day 19 *1.2
day 20 *0.75
day 21 *0.9
day 22 *0
day 23 *0.75
day 24 *0.76
day 25 *0
day 26 *0.5

Thanks for your help


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
Calculate A Date Excluding Weekends And Holidays travelersway New Users to Excel 10 February 9th 12 07:34 PM
How to calculate the difference between two dates, excluding Sund. gwatt Excel Discussion (Misc queries) 6 December 10th 07 07:57 PM
Calculate time (excluding weekend (48 hrs)) AndyO_UK Excel Worksheet Functions 10 February 3rd 07 07:55 PM
Calculate MIN excluding zero gezuvor Excel Discussion (Misc queries) 4 February 18th 06 04:17 AM
Calculate A Date Excluding Weekends And Holidays travelersway New Users to Excel 1 February 8th 06 08:56 PM


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