在Google表格中显示Lakhs和Crores

时间:2015-09-02 17:42:55

标签: google-sheets

我想使用Google表格来方便全球访问,但我确实需要以Lakh和Crore(印度风格)格式显示数字,以避免管理者之间的混淆。

150,000应显示为1,50,00012,000,000应显示为1,20,00,000

我尝试将格式设置为##,##,##,000,但我的号码仍显示为12,000,000。我找不到任何in the docs

有谁知道如何实现这个目标?

2 个答案:

答案 0 :(得分:129)

这肯定适用于Google表格。也应该在Excel中工作。

选择适当的单元格后,导航至:

Google Sheets : Format -> Number -> More Formats -> Custom Number Format
Excel : Format -> Cells -> Custom -> [Custom text box]

输入以下内容之一并应用:

A] Lakhs和Crores的卢比符号和小数

[$₹][>9999999]##\,##\,##\,##0.00;[$₹][>99999]##\,##\,##0.00;[$₹]##,##0.00

B]对于有卢比符号且没有小数的Lakhs和Crores

[$₹][>9999999]##\,##\,##\,##0;[$₹][>99999]##\,##\,##0;[$₹]##,##0

C]对于没有卢比符号和小数的Lakhs和Crores

[>9999999]##\,##\,##\,##0.00;[>99999]##\,##\,##0.00;##,##0.00

D]对于没有卢比符号和小数的Lakhs和Crores

[>9999999]##\,##\,##\,##0;[>99999]##\,##\,##0;##,##0

编辑:我已在Google表格和Excel上测试了这些内容。负数也有效。

答案 1 :(得分:6)

截至 2020 年 12 月,Google 表格还添加了印度卢比格式。只需转到File -> Spreadsheet settings -> Locale 并选择印度。

让它刷新,你会在工具栏中找到Rs.符号。

enter image description here