如何对 Excel 单元格内的数字进行零填充

发布于 2024-07-15 09:07:54 字数 96 浏览 7 评论 0原文

如何将 Excel 电子表格中的数字归零到 10 个位置?

即,如果单元格 A1 有 1234,单元格 A2 如何显示 0000001234(10 个位置)。

How do you zero fill a number to 10 positions inside an excel spreadsheet?

i.e. If cell A1 has 1234 how can cell A2 display 0000001234 (10 postions).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(7

ぶ宁プ宁ぶ 2024-07-22 09:07:54

=TEXT(A1,"0000000000")

=TEXT(A1,"0000000000")

谢绝鈎搭 2024-07-22 09:07:54

实际上,这不是一个编程问题:

  1. 选择您想要以这种方式格式化的单元格。
  2. 右键单击并选择“设置单元格格式...”
  3. 选择“数字”标签,然后向下滚动到类别列表中的“自定义”。
  4. 在类型字段中输入“0000000000”。

Not a programming question, really:

  1. Select cells you want formatted in this way.
  2. Right click and select "Format Cells..."
  3. Select the "Number" Tag, and scroll down to "Custom" in the category list.
  4. Type "0000000000" into the Type field.
香草可樂 2024-07-22 09:07:54

格式>单元格...>数字>自定义>类型>0000000000

Format>Cells...>Number>Custom>Type>0000000000

葬花如无物 2024-07-22 09:07:54

这个公式是可变的。

它检查值的长度并在前面添加“0”,

现在长度为10。您可以更改它。

=REPT("0",10-LEN(A1))&A1

This formula is variable.

It checks the length of the value and add "0" in front

Now the lenght is 10. You can change it.

=REPT("0",10-LEN(A1))&A1
不可一世的女人 2024-07-22 09:07:54

我知道这是一篇相当老的帖子,但我刚刚在将 sql 表导出到 Excel 时遇到了同样的问题,我发现我的解决方案非常简单!
只需将单元格格式设置为“自定义”,然后输入您希望最终数字包含的字符数即可;
在你的情况下,10个位置'0000000000'
我通常不回复 stackoverflow 的帖子,所以我没有足够的声誉来发布图片;

I know this is a pretty old post, but I've just came across the same problem while exporting a sql table to excel, and I found I very simple solution!
Just set the cell format to ' Custom' then type the amount of characters you want the final number to have;
In your case 10 positions '0000000000'
I don't usually reply to the stackoverflow's posts, so I don't have enought reputation to post images;

半岛未凉 2024-07-22 09:07:54

像下面这样的东西。

right( "0000000000" & number, 10 )

在左边放 10 个零,取最右边的 10 个位置,无论结果是什么。

另外,你还有

text( number, "0000000000" )

Something like the following.

right( "0000000000" & number, 10 )

Put 10 zeroes on the left, take the right-most 10 positions, whatever they turn out to be.

Also, you have

text( number, "0000000000" )
海风掠过北极光 2024-07-22 09:07:54

如何在Excel工作表中显示完整的数字?

即单元格A1“2.40252E+13”如何在A1中显示完整数字变成“24025207702012”

How to display full the number inside in excel workseet?

I.e cell A1 "2.40252E+13" how to display full number in A1 became "24025207702012"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文