Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi, using an accounting format on Row E, I am trying to extract thje lowest
value from E6:E34 where B6:B34 = 2006. I am using: =MIN($B$6:$B$34,"2006",E6:E34), but Excel is returning a value for a row that does now have the cell in Column B set to 2006. Can some kind person tell me what I'm doing wrong please - thanks A |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
try
=min(if(B6:B34="2006",E6:E34)) entered as an array control-shift-enter or =min(if(year(B6:B34)=2006,E6:E34)) entered as an array control-shift-enter depending on the format of column B (Text or date) Min by itself does not have a qualifier capability so your equaiton was looking for the min in B6:B34 and E6:E34 "Alex" wrote: Hi, using an accounting format on Row E, I am trying to extract thje lowest value from E6:E34 where B6:B34 = 2006. I am using: =MIN($B$6:$B$34,"2006",E6:E34), but Excel is returning a value for a row that does now have the cell in Column B set to 2006. Can some kind person tell me what I'm doing wrong please - thanks A |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=min(if(b6:b34="2006",E6:e34))
Enter with Ctrl+shift+Enter Is 2006 text or number: remove quotes if latter. "Alex" wrote: Hi, using an accounting format on Row E, I am trying to extract thje lowest value from E6:E34 where B6:B34 = 2006. I am using: =MIN($B$6:$B$34,"2006",E6:E34), but Excel is returning a value for a row that does now have the cell in Column B set to 2006. Can some kind person tell me what I'm doing wrong please - thanks A |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to lookup the minimum, 2nd minimum and 3rd minimum......... | Excel Worksheet Functions | |||
minimum | Excel Worksheet Functions | |||
Minimum but One?? | Excel Worksheet Functions | |||
Minimum Value | Excel Worksheet Functions | |||
second minimum value | Excel Discussion (Misc queries) |