11

Currently the Excel default formatting is:

1,000,000
500,000

How do you format the number to use the comma separator (,) like this

10,00,00,000
50,00,000

This is is how Indian Currency (Rupees, INR, ₹) is normally represented.

3
  • 1
    What? You want it to have commas at position 3 and 5? 6? Between 0s? Is this for a currency? Your question is very unclear Commented Jun 16, 2015 at 11:55
  • Yes i want to put comma in 3 then 5 then 7 then 9 and so on position. This is because of my currency which is rupees. Kindly give me some solution for that..
    – ramji
    Commented Jun 16, 2015 at 14:23
  • 1

2 Answers 2

18

Some currency systems require a slightly different comma schema. With data like:

enter image description here

applying this Custom Number Format with decimal points:

[>=10000000]##\,##\,##\,##0;[>=100000] ##\,##\,##0;##,##0.00

will produce:

enter image description here

2
  • 2
    "Note that the original question is written wrong for India. In India the lowest-value 3 places are grouped together, then pairs of digits in higher places separated by commas. 100 1,000 10,000 1,00,000 10,00,000 1,00,00,000 and so on. So the results displayed in the answer above are actually correct for India." - Phil Davis
    – user193661
    Commented Nov 27, 2015 at 6:44
  • Can you convert this exact notation for US style three digit comma separation? I tried this but excel doesn't allow it: [>=1000000000]##\,###\,###\,##0;;[>=1000000]##\,###\,##0;[>=1000] ##\,##0;##,##0
    – Veki
    Commented Dec 22, 2023 at 6:07
3

There is a better and permanent solution (for Indian users):

Add Region as India and language as English(India). Then you can see the Indian comma format and Indian currency symbol inplace of dollar symbol. Default setting in US and English(US).

Go to Control panel > Region (search)

(tab) Format : Select English(India)

Click Laguage Preferences and add English(India) and move up to top.

Press OK

1
  • 4
    The question clearly states that the user wants to format in Excel not system wide
    – Mr.X
    Commented Aug 4, 2019 at 10:03

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .