View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.misc
Oregongal35 Oregongal35 is offline
external usenet poster
 
Posts: 4
Default function arguments

yeah sorry- I cant figure out how to get the last part to round,
everytime i put it in it gives me an error.
the roc1 can be any amount you want to figure it out.

its a funcitonal argument,
logical test : roc1 * 2% is < 500 = either true or false,
value if true: = 500
value if false: = roc1 * 2% ---- this is the part i need to round
i tried putting in the (round(roc1*2%,0)) but it wont work.

Thanks





"Fred Smith" wrote:

Well, it's nice to see the formula -- better late than never. Now we need
more specifics.

1. What do you mean by "cant get it to work"?
2. What do you want to round?
3. Why is 500 in quotes in your formula?
4. When you tried to round, what formula did you use?

Regards,
Fred.

"Oregongal35" wrote in message
...
Sorry this is my formula,

I cant get it to work when i try to round the last part.

=IF(roc1*2%<500," 500",roc1*2%)


Thanks..

"Shane Devenshire" wrote:

Hi,

Probably

=ROUND(IF(A1=15,A1*25%,0),2)

You didn't show us the formula you were using so I made one up

Cheers,
Shane Devenshire

"Oregongal35" wrote:

I created a true and false function,
and if true then it equals 33*25%, how do i get the that number to
round in
my formula?