Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I want to return the minimum value of about 13 cells in a column (column B).
I only want to include values where the text in column K is TRUE (based on a different IF formula from another cell). TIA |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Something like:
=if(K1="TRUE",min(b1:b13),"what you want displayed when K is FALSE") Regards, Fred. "Steve M" wrote in message ... I want to return the minimum value of about 13 cells in a column (column B). I only want to include values where the text in column K is TRUE (based on a different IF formula from another cell). TIA |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I need the formula to look for "TRUE" in EACH row to determine whether or
not to use the figure in column B. This formula did not work--=IF(K7:K18="TRUE",MAX(B7,B8,B9,B10,B11,B14,B15,B16 ,B17,B18,B19,B20)). The cell returns #VALUE! when I try this formula. Note that some of the cells K7 to K18 will contain the formula result "TRUE" and some "FALSE." "Fred Smith" wrote in message ... Something like: =if(K1="TRUE",min(b1:b13),"what you want displayed when K is FALSE") Regards, Fred. "Steve M" wrote in message ... I want to return the minimum value of about 13 cells in a column (column B). I only want to include values where the text in column K is TRUE (based on a different IF formula from another cell). TIA |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
What do you want to happen when a cell is TRUE, and what when it's FALSE? Do
you, for example, want to find the Max of only the TRUEs? Or something else? Fred "Steve M" wrote in message ... I need the formula to look for "TRUE" in EACH row to determine whether or not to use the figure in column B. This formula did not work--=IF(K7:K18="TRUE",MAX(B7,B8,B9,B10,B11,B14,B15,B16 ,B17,B18,B19,B20)). The cell returns #VALUE! when I try this formula. Note that some of the cells K7 to K18 will contain the formula result "TRUE" and some "FALSE." "Fred Smith" wrote in message ... Something like: =if(K1="TRUE",min(b1:b13),"what you want displayed when K is FALSE") Regards, Fred. "Steve M" wrote in message ... I want to return the minimum value of about 13 cells in a column (column B). I only want to include values where the text in column K is TRUE (based on a different IF formula from another cell). TIA |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Let me explain in words what I am trying to do since I am not communicating
well with functions. I have several employees that run production routes. Their production totals are in column B. I only want to compare the production for employees certain types of equipment. They use different equipment on different days. I haven't discussed it, but I use an OR formula to give me a true or false (based on whether they are using the equipment whose production I want included in the MIN or MAX comparisons). The OR formulas returning TRUE or FALSE are in column K. I just want to find the MIN for the employees that are using certain equipment (in other words that the OR formula returns TRUE for in column K). Thank you for your patience. "Fred Smith" wrote in message ... What do you want to happen when a cell is TRUE, and what when it's FALSE? Do you, for example, want to find the Max of only the TRUEs? Or something else? Fred "Steve M" wrote in message ... I need the formula to look for "TRUE" in EACH row to determine whether or not to use the figure in column B. This formula did not work--=IF(K7:K18="TRUE",MAX(B7,B8,B9,B10,B11,B14,B15,B16 ,B17,B18,B19,B20)). The cell returns #VALUE! when I try this formula. Note that some of the cells K7 to K18 will contain the formula result "TRUE" and some "FALSE." "Fred Smith" wrote in message ... Something like: =if(K1="TRUE",min(b1:b13),"what you want displayed when K is FALSE") Regards, Fred. "Steve M" wrote in message ... I want to return the minimum value of about 13 cells in a column (column B). I only want to include values where the text in column K is TRUE (based on a different IF formula from another cell). TIA |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
What's wrong with the solution we gave you? Did it not work? Did you get an
error message? We can't help you much if you don't tell us what happened. Regards, Fred. "Steve M" wrote in message ... Let me explain in words what I am trying to do since I am not communicating well with functions. I have several employees that run production routes. Their production totals are in column B. I only want to compare the production for employees certain types of equipment. They use different equipment on different days. I haven't discussed it, but I use an OR formula to give me a true or false (based on whether they are using the equipment whose production I want included in the MIN or MAX comparisons). The OR formulas returning TRUE or FALSE are in column K. I just want to find the MIN for the employees that are using certain equipment (in other words that the OR formula returns TRUE for in column K). Thank you for your patience. "Fred Smith" wrote in message ... What do you want to happen when a cell is TRUE, and what when it's FALSE? Do you, for example, want to find the Max of only the TRUEs? Or something else? Fred "Steve M" wrote in message ... I need the formula to look for "TRUE" in EACH row to determine whether or not to use the figure in column B. This formula did not work--=IF(K7:K18="TRUE",MAX(B7,B8,B9,B10,B11,B14,B15,B16 ,B17,B18,B19,B20)). The cell returns #VALUE! when I try this formula. Note that some of the cells K7 to K18 will contain the formula result "TRUE" and some "FALSE." "Fred Smith" wrote in message ... Something like: =if(K1="TRUE",min(b1:b13),"what you want displayed when K is FALSE") Regards, Fred. "Steve M" wrote in message ... I want to return the minimum value of about 13 cells in a column (column B). I only want to include values where the text in column K is TRUE (based on a different IF formula from another cell). TIA |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
After rereading your initial post, I think the following will do what you
want. First, you need an array formula, which you create by using Control-Shift-Enter, rather than just Enter. Second, do you want the minimum value, or the maximum value? You say Min in your initial post, but used Max in the formula. Why the discrepancy? Finally, your ranges have to be the same size. If you're testing K7:K18, then your values range must be B7:B18, not B7:B20. Assuming you want the minimum, try the following: =MIN(IF(K7:K18="TRUE",B7:B18,0)) Remember to commit with Ctrl-Shift-Enter. Regards, Fred. "Steve M" wrote in message ... I need the formula to look for "TRUE" in EACH row to determine whether or not to use the figure in column B. This formula did not work--=IF(K7:K18="TRUE",MAX(B7,B8,B9,B10,B11,B14,B15,B16 ,B17,B18,B19,B20)). The cell returns #VALUE! when I try this formula. Note that some of the cells K7 to K18 will contain the formula result "TRUE" and some "FALSE." "Fred Smith" wrote in message ... Something like: =if(K1="TRUE",min(b1:b13),"what you want displayed when K is FALSE") Regards, Fred. "Steve M" wrote in message ... I want to return the minimum value of about 13 cells in a column (column B). I only want to include values where the text in column K is TRUE (based on a different IF formula from another cell). TIA |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Mon, 25 Feb 2008 15:27:52 -0500, "Steve M"
wrote: I need the formula to look for "TRUE" in EACH row to determine whether or not to use the figure in column B. This formula did not work--=IF(K7:K18="TRUE",MAX(B7,B8,B9,B10,B11,B14,B15,B16 ,B17,B18,B19,B20)). The cell returns #VALUE! when I try this formula. Note that some of the cells K7 to K18 will contain the formula result "TRUE" and some "FALSE." That formula is incorrect. Try this: =MAX(IF(K7:K18=TRUE,B7:B18)) NOTE: This formula is an **ARRAY** formula. After you type or paste it into your cell, enter it by holding down <ctrl<shift while you hit <enter. If you do this correctly, Excel will place braces {...} around the formula in the cell --ron |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Help with nested function | Excel Worksheet Functions | |||
can you nested sum and round function within if function? | Excel Worksheet Functions | |||
Offset function with nested match function not finding host ss. | Excel Worksheet Functions | |||
Nested function | Excel Worksheet Functions | |||
Nested IF Function, Date Comparing, and NetworkDays Function | Excel Worksheet Functions |