View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.misc
Fred Smith[_4_] Fred Smith[_4_] is offline
external usenet poster
 
Posts: 2,389
Default round up the number

If you want to change 178.4 to 178, not 178, you want to *round*, not round
up. Change Damon's formula to:
=Round(a2,0)*b2

Regards
Fred

"Lowan Chan" wrote in message
...
Thanks Damon.

I have one problem, your format only round up A2 to 179, but I need the
result is 178. What else I can do?

Thank you!
--
Lowan


"Damon Longworth" wrote:

Try:

=ROUNDUP(A2,0)*B2

"Lowan Chan" wrote:

Hi,

I have a table below:
A B C
1. 123.60 12
2. 178.40 8

How can I set a formular to get the following results:
C1 = 124 * B1 (A1's 123.60 round up to 124)
C2 = 178 * B2 (A2's 178.40 round up to 178)

thanks in advance!
Lowan

--
Lowan