如何使用 NPOI C# 中的列索引获取 excel 列

How to get excel column with the column index in NPOI C#

我想使用循环为列 k-P 设置单元格公式,而在 c# 中我只能使用整数循环,你如何实际获得列 (E.G K,L,M,N,O,P)与索引?遍历行非常简单,因为它们只是数字,但对于列 excel 使用字母。 除了在 c#

中为字母 k-P 定义我自己的列表之外,我想不出其他任何事情

如果您已有单元格对象,则可以使用 CellReference

var temp = new CellReference(cell);
var reference = temp.FormatAsString();

希望这对你有用!