如何在C#中使Excel数字前加零

发布于 2024-10-06 12:47:08 字数 150 浏览 1 评论 0原文

我从我的程序中制作了一个 Excel 文件(xls 或 csv)。

我发送 00123 并在 Excel 中看到 123

我如何发送并查看 00123

提前致谢

I make from my program an excel file (xls or csv).

I send 00123 and in Excel I see 123

How I can send and see 00123

Thanks in advance

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

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

发布评论

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

评论(2

庆幸我还是我 2024-10-13 12:47:08

这是因为 Excel 将数据视为“数字”。强制 Excel 接受任何内容作为文本的一个简单方法是在文本前面添加撇号。

例如,要将整数 123 写为 00000123,只需编写:

ActiveCell = "'" & Format(123, "00000000")

编辑:另一个解决方案是将单元格 NumberFormatProperty 设置为文本:

Worksheet.GetRange(..).EntireColumn.NumberFormat = "@"

您可能想查看这篇文章:Excel单元格自动设置格式

Its because excel is treating the data as 'numeric'. A simple way to force Excel to accept anything as text is to prepend an apostrophe to the text.

e.g. to write an integer 123 as 00000123 just write:

ActiveCell = "'" & Format(123, "00000000")

EDIT: Another solution is to set the Cells NumberFormatProperty to text:

Worksheet.GetRange(..).EntireColumn.NumberFormat = "@"

You might want to see this article: Excel Cell Auto Format

乖不如嘢 2024-10-13 12:47:08

在 C# 中查看带有填充的 CSV

myVar.PadLeft(5,'0')

在 Excel 中将数字格式设置为自定义 00000 或 ZipCode

In C# to see the CSV with the padding use

myVar.PadLeft(5,'0')

In Excel set the number format to custom 00000 or ZipCode

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