Reputation: 11
I want to insert comma after every 2nd digit from right in Excel
for eg:
123 ---> 1,23.00
1234 ---> 12,34.00
12345 ---> 1,23,45.00
12345678 ---> 12,34,56,78.00
Upvotes: 0
Views: 209
Reputation: 11438
=TEXT(A1,IFERROR(REPT("##\,",ROUNDUP(LEN(A1)/2-1,0)),"")&"#0.00")
Out of curiosity, what will you be using it for?
Upvotes: 5