Decimal places

deanl33069

Board Regular
Joined
May 2, 2019
Messages
120

got this frmula here and it does work as long as my numbers are smaller than.10000

=LEFT(H29,3)&"."&MID(H29,4,1)
i need to have the decimal point 1 digit from the right. at ALL times

HELP
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Try this:
Code:
=LEFT(H29,LEN(H29)-1) & "." & RIGHT(H29,1)
Note that this will return a text value. If you need it to be numeric so you can do math on it, surround it in the VALUE function, i.e.
Code:
=VALUE(LEFT(H29,LEN(H29)-1) & "." & RIGHT(H29,1))

Alternatively, if it is a number with no decimals to start with, you can simply divide by 10, i.e.
Code:
=H29/10
 
Last edited:
Upvote 0
How about
=LEFT(H29,LEN(H29)-1)&"."&RIGHT(H29)
 
Upvote 0
You want something like this:

<table border="1" cellspacing="0" style="font-family:Calibri,Arial; font-size:11pt; background-color:#ffffff; "> <colgroup><col style="font-weight:bold; width:30px; " /><col style="width:79.84px;" /><col style="width:76.04px;" /></colgroup><tr style="background-color:#cacaca; text-align:center; font-weight:bold; font-size:8pt; "><td > </td><td >H</td><td >I</td></tr><tr style="height:19px ;" ><td style="font-size:8pt; background-color:#cacaca; text-align:center; " >29</td><td style="text-align:right; ">5.86</td><td style="text-align:right; ">0.8</td></tr></table><br /><table style="font-family:Arial; font-size:10pt; border-style: groove ;border-color:#00ff00;background-color:#fffcf9; color:#000000; "><tr><td ><b></b></td></tr><tr><td ><table border = "1" cellspacing="0" cellpadding="2" style="font-family:Arial; font-size:9pt;"><tr style="background-color:#cacaca; font-size:10pt;"><td >Cell</td><td >Formula</td></tr><tr><td >I29</td><td >=TRUNC(H29-INT(H29),1)</td></tr></table></td></tr></table>


Or you could give some examples of what you have and what you always expect of result
 
Upvote 0
You are welcome.
Glad we were able to help.
 
Upvote 0

Forum statistics

Threads
1,215,045
Messages
6,122,830
Members
449,096
Latest member
Erald

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top