Home |
Search |
Today's Posts |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
thanks Joe, i went with the first one and it worked... YEAH....:)
"joeu2004" wrote: On Nov 13, 1:18 pm, Oregongal35 wrote: Sorry this is my formula, [....] =IF(roc1*2%<500," 500",roc1*2%) =if(roc1*2% < 500, 500, round(roc1*2%,0)) Note that I replaced " 500" with just 500. If instead you want the result to always be text with one leading space, try: =if(roc1*2% < 500, " 500", text(roc1*2%, " 0")) Note that the TEXT() function does the rounding for you. Also note that there is a space before 0 in the last term. More simply, replace the IF() function with one of the following: =round(min(roc1*2%,500), 0) =text(min(roc1*2%,50), " 0") |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
MIN Function with arguments | Excel Worksheet Functions | |||
IF function with too many arguments | Excel Worksheet Functions | |||
If Function with 3 arguments | Excel Worksheet Functions | |||
Function Arguments | Excel Worksheet Functions | |||
Is it possible to use more than 8 arguments in a function? | Excel Discussion (Misc queries) |