Rounding cents

  • Thread starter Håkan Björkström
  • Start date
H

Håkan Björkström

I just faced an annoying problem in Excel. I need to convert an euro sum (e..g. €49.80) into text formatted as the integer part four characters long with leading zeros and accordingly cents two characters long with leading zeros. Example, euro 49.80 should be presented as 004980. When I calculate the cent part it will result in 79, not 80. I have to find out a formula which always presents the cent figure correctly, not too small not too big.

Thanx Hakan
 
C

Claus Busch

Hi Hakan,

Am Tue, 22 Jan 2013 07:50:13 -0800 (PST) schrieb Håkan Björkström:
I just faced an annoying problem in Excel. I need to convert an euro sum (e.g. ?49.80) into text formatted as the integer part four characters long with leading zeros and accordingly cents two characters long with leading zeros. Example, euro 49.80 should be presented as 004980. When I calculate the cent part it will result in 79, not 80. I have to find out a formula which always presents the cent figure correctly, not too small not too big.

your euro sum in A1:
=ROUND(A1*100,-1) and custom format "000000"
or as text:
=TEXT(ROUND(A1*100,-1),"000000")


Regards
Claus Busch
 
H

Håkan Björkström

Hi Hakan,



Am Tue, 22 Jan 2013 07:50:13 -0800 (PST) schrieb H�kan Bj�rkstr�m:






your euro sum in A1:

=ROUND(A1*100,-1) and custom format "000000"

or as text:

=TEXT(ROUND(A1*100,-1),"000000")





Regards

Claus Busch

--

Win XP PRof SP2 / Vista Ultimate SP2

Office 2003 SP2 /2007 Ultimate SP2

Easier than I expected. I tried to separately handle integer and decimals and the formula for cents was Right("00"&100*(c3-Int(c3));2), which gave me 79, when C3 contained value 49.80.
Thanx a lot
Hakan
 
C

Claus Busch

Hi Hakan,

Am Tue, 22 Jan 2013 08:15:43 -0800 (PST) schrieb Håkan Björkström:
Easier than I expected. I tried to separately handle integer and decimals and the formula for cents was Right("00"&100*(c3-Int(c3));2), which gave me 79, when C3 contained value 49.80.

there ist an error into the formula. Please change to:
=TEXT(ROUND(A1*100,0),"000000")
or
=ROUND(A1*100,0)
with custom number format


Regards
Claus Busch
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top