How do I Limit decimal places in a string cell reference

O

Ozinus

I am referencing a cell which has 1 decimal place yet it shows about 12
places right of the decimal in the string. What am I doing wrong?
 
P

Pete_UK

Use this:

=TEXT(A1,"0.0")

or something like this:

="Result is: "&TEXT(A1,"0.0")

Hope this helps.

Pete
 
B

Bernard Liengme

Either
a) format the cell to display only 1 decimal place
or
b) use a formula such as =ROUND(A1,1) to round the actual stored value to
one decimal place
best wishes
 

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