gpt4 book ai didi

C# ExcelPackage 将单元格类型设置为数字

转载 作者:太空宇宙 更新时间:2023-11-03 16:05:59 25 4
gpt4 key购买 nike

我正在使用 c# .net。我正在从头开始创建一个新的 excel 文件。一些单元格包含文本,一些单元格包含数字。如何使用 C# ExcelPackage 将单元格类型设置为数字?

最佳答案

这应该有效:

// Get the entire column you want (in this example column A)
var range = someWorkSheet.get_Range("A:A");
// Set the format to numbers
range.NumberFormat = "0";

(如果您想将其设置为文本,则 range.NumberFormat = "@";)

关于C# ExcelPackage 将单元格类型设置为数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19403375/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com