Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
how to multiply two cells of certain values uptil a maximum value eg.
multiply A1:B1 whereas B1 is not more than 38 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Instead of using B1 in your multiplication, use MAX(B1,38) instead.
Rick "Mnas" wrote in message ... how to multiply two cells of certain values uptil a maximum value eg. multiply A1:B1 whereas B1 is not more than 38 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(B1<=38, A1*B1, "?") You did not say what to do if B1 is greater than
38, so I return a ? Tyro "Mnas" wrote in message ... how to multiply two cells of certain values uptil a maximum value eg. multiply A1:B1 whereas B1 is not more than 38 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=A1*MIN(B1,38)
-- David Biddulph "Mnas" wrote in message ... how to multiply two cells of certain values uptil a maximum value eg. multiply A1:B1 whereas B1 is not more than 38 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
should be MIN(B1,38) right?
Jean-Guy "Rick Rothstein (MVP - VB)" wrote: Instead of using B1 in your multiplication, use MAX(B1,38) instead. Rick "Mnas" wrote in message ... how to multiply two cells of certain values uptil a maximum value eg. multiply A1:B1 whereas B1 is not more than 38 |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Yes, MIN, of course... I read "not more than" and immediately thought MAX
without paying enough attention to the rest of the words around it. Thanks for noting that. Rick "Jean-Guy" wrote in message ... should be MIN(B1,38) right? Jean-Guy "Rick Rothstein (MVP - VB)" wrote: Instead of using B1 in your multiplication, use MAX(B1,38) instead. Rick "Mnas" wrote in message ... how to multiply two cells of certain values uptil a maximum value eg. multiply A1:B1 whereas B1 is not more than 38 |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Well I just coulnd't pass up the chance to correct an MVP :)
Jean-Guy "Rick Rothstein (MVP - VB)" wrote: Yes, MIN, of course... I read "not more than" and immediately thought MAX without paying enough attention to the rest of the words around it. Thanks for noting that. Rick "Jean-Guy" wrote in message ... should be MIN(B1,38) right? Jean-Guy "Rick Rothstein (MVP - VB)" wrote: Instead of using B1 in your multiplication, use MAX(B1,38) instead. Rick "Mnas" wrote in message ... how to multiply two cells of certain values uptil a maximum value eg. multiply A1:B1 whereas B1 is not more than 38 |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Not such a big deal in my case... my MVP award is for the compiled version
of VB, not for Excel.<g Rick "Jean-Guy" wrote in message ... Well I just coulnd't pass up the chance to correct an MVP :) Jean-Guy "Rick Rothstein (MVP - VB)" wrote: Yes, MIN, of course... I read "not more than" and immediately thought MAX without paying enough attention to the rest of the words around it. Thanks for noting that. Rick "Jean-Guy" wrote in message ... should be MIN(B1,38) right? Jean-Guy "Rick Rothstein (MVP - VB)" wrote: Instead of using B1 in your multiplication, use MAX(B1,38) instead. Rick "Mnas" wrote in message ... how to multiply two cells of certain values uptil a maximum value eg. multiply A1:B1 whereas B1 is not more than 38 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do you multiply each cell by the same number? ( 899.80*.085) | Excel Discussion (Misc queries) | |||
How do I multiply the whole sheet by a number | Excel Discussion (Misc queries) | |||
How do I multiply a whole column by a number? | Excel Worksheet Functions | |||
multiply a row by a certain number? | Excel Discussion (Misc queries) | |||
how can i multiply a number in each cell? | Excel Discussion (Misc queries) |