Question:
Is there a way in Microsoft Excel to insert a decimal place 5 places from the right side (i.e. the last 5 digits are decimals and everything left of that is a whole number) of a series of numbers with different lengths? I need to figure out how to insert the decimal so I can sum the totals for a check figure.
Yes -
I broke this out into 5 steps and am including a one formula solution in the picture below.
Step 1: Count the characters using the LEN formula and subtract 5. This will tell you the number of characters that will be shown to the left of the decimal. =LEN(A3)-5 In the example below, there are a total of 12 characters. 12-5=7
Step 2: Use the LEFT formula to display the 7 characters that will be on the left of the decimal =LEFT(A3,Step 1)
Step 3: Use the RIGHT formula to display the 5 characters that will display to the right of the decimal =RIGHT(A3,5)
Step 4: Concatenate the LEFT and RIGHT results of Step 2 and 3 with a decimal in between =Step2&”.”&Step3
Step 5: Change the concatenated cell to a value using VALUE formula =VALUE(Step4)

















BlogoSquare