Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
All excell with give me true and false.
I need to calculate a value vased on two cells. If the end value is 49 or less I need to have default to 50. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
=max(50,yourcalculation)
may work ok. Tony wrote: All excell with give me true and false. I need to calculate a value vased on two cells. If the end value is 49 or less I need to have default to 50. -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Here is what I am attempting to do in excel.
=SUM(F41-E41) "if VALUE is less than F45 then use the value in F45" FYI F45 is an input value can can be any number. All excell with give me true and false. I need to calculate a value vased on two cells. If the end value is 49 or less I need to have default to 50. -- Dave Peterson |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
=max(F45, f41-e41)
Maybe??? ps. In your original formula, =sum(f41-e41), you don't need the =sum() portion. Just F41-E41 would be sufficient. Tony wrote: Here is what I am attempting to do in excel. =SUM(F41-E41) "if VALUE is less than F45 then use the value in F45" FYI F45 is an input value can can be any number. All excell with give me true and false. I need to calculate a value vased on two cells. If the end value is 49 or less I need to have default to 50. -- Dave Peterson -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
About arithmetic Formulas | Excel Discussion (Misc queries) | |||
bad arithmetic | Excel Programming | |||
Simple arithmetic | Excel Discussion (Misc queries) | |||
Simple arithmetic - take 2 | Excel Discussion (Misc queries) | |||
formula arithmetic | Excel Programming |