Share via

Excel won't Decrease Decimals?

Anonymous
2017-04-28T11:43:49+00:00

Hello,

I've got an issue with Excel not decreasing Decimals when the number is generated by a Forumla, I tried " Format Cells" and the Decrease Decimal buttons, it didn't work.

I've got Decimal Numbers @ cell A:   1.13

I've got Decimal Numbers @ cell B: 8.69

I have this code @ cell C: ="U:" & B5*10 & " F:" & 10*B5-10

How it looks:  U:86.9230769....  F: 76.92307692307...

How I'd prefer it to look: U:86.92 F:76.92

It works like that on cells that ends with 0, such as U:93.3 F:83.3  since both ends with a "0" but whenever it's not, it's being so annoying..

Screenshot: http://prntscr.com/f1tk4z

Anyone got a solution to this?

Thanks!

Microsoft 365 and Office | Excel | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments
{count} votes
Answer accepted by question author
  1. Anonymous
    2017-04-28T19:13:53+00:00

    Hi,

    It doesn't format the decimals because it's a text string but you can do it like this.

    ="U:"&TEXT(B5*10,"0.00")&" F:"&TEXT(10*B5-10,"0.00")

    2 people found this answer helpful.
    0 comments No comments

5 additional answers

Sort by: Most helpful
  1. Anonymous
    2017-04-30T08:37:35+00:00

    THANK YOU VERY MUCH! perfect! :)

    0 comments No comments