Moving comma inside text

M_Timps

New Member
Joined
Oct 17, 2017
Messages
3
Hello! I have this problem for which I have been searching a solution for some time now. This may be due to lack of knowledge in Excel or poor skill of the English language. I need the first column to look like the second column - simply move the comma by one number to the left. Help would be much appreciated.


15,231,52
146,3214,63
7,850,78

<tbody>
</tbody>
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Try this:
=CONCATENATE(LEFT(B1,FIND(",",B1)-1),MID(B1,FIND(",",B1)+1,1),",",RIGHT(B1,LEN(B1)-(FIND(",",B1))-1))
 
Upvote 0
In addition to what suggested by aaronbens, above:
If the initial string is in A2:
Code:
=IFERROR(TEXT(SUBSTITUTE(A2,".",",")/10,"0.00");"")

Bye
 
Upvote 0
Thanks for the answers. Tried both suggestions but got an error in the formulae - probably because lack of skill. I figured out a another solution though. I simply divided the whole column with 10 :biggrin: and it work for me.
 
Upvote 0

Forum statistics

Threads
1,215,220
Messages
6,123,693
Members
449,117
Latest member
Aaagu

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