即使在列上执行AutoFit()后,Excel.Range.Text值仍然显示为“######”

时间:2013-06-19 07:39:09

标签: c# excel vsto

我需要读取一些excel数据的格式化值(日期,数字和文本的混合,我不知道运行时之前的格式)作为一系列行,丢弃所有空白单元格。

我在输入列上进行自动调整,所以理论上列的宽度足够大,这些单元格的显示值不应该是####,但自动调整似乎对我的输出数据没有影响。

int rowCount = allCells.Rows.Count;
int colCount = allCells.Columns.Count;
List<List<string>> nonBlankValues = new List<List<string>>();


//to stop values coming out as series of #### due to column width, resize columns
foreach (Excel.Range col in allCells.Columns)
{
    col.AutoFit();
}
for (int i = 0; i < rowCount; i++)
{
    List<string> row = new List<string>();
    for (int j = 0; j < colCount; j++)
    {
        Excel.Range cellVal = (Excel.Range)allCells.Cells[i + 1, j + 1]; //Excel ranges are 1 indexed not 0 indexed
        string cellText = cellVal.Text.ToString();
        if (cellText != "")
        {
            row.Add(cellText);
        }

    }
    if (row.Count > 0)
    {
        nonBlankValues.Add(row);
    }
}

2 个答案:

答案 0 :(得分:0)

将格式设置为“常规”或类似的内容。不知道你的应用程序的确切代码,但它应该是这样的:

Range.NumberFormat = "General";

这对我有用,我摆脱了###(与单元格中最大数量的字符有关)。 (我使用'Standaard',因为我的版本是荷兰语)。所以我认为它是英文版的“通用”。范围在我的情况下:

Microsoft.Office.Interop.Excel.Range

答案 1 :(得分:0)

手动调整列的大小似乎可以解决问题...

似乎使我自己的AutoFit等效是唯一的方法:(所以我有2个选项......

一个。更快的方法是在读取数据之前向每列添加固定数量,然后将其删除

    foreach (Excel.Range col in allCells.Columns)
    {
        col.ColumnWidth = (double)col.ColumnWidth + colWidthIncrease;
    }

...来自这里的问题......

    foreach (Excel.Range col in allCells.Columns)
    {
        col.ColumnWidth = (double)col.ColumnWidth - colWidthIncrease;
    }

B中。有一个反馈循环,当我遇到一个只有#的条目时,迭代地增加一个固定的数量,直到这个改变(用循环计数器检查终止)

for (int i = 0; i < rowCount; i++)
{
    List<string> row = new List<string>();
    for (int j = 0; j < colCount; j++)
    {
        string cellText="";
        int maxLoops = 10;
        int loop = 0;
        bool successfulRead = false;
        while (!successfulRead && loop < maxLoops)
        {
            Excel.Range cellVal = (Excel.Range)allCells.Cells[i + 1, j + 1]; //Excel ranges are 1 indexed not 0 indexed
            cellText = cellVal.Text.ToString();
            if (!Regex.IsMatch(cellText, @"#+"))
            {
                successfulRead = true;
            }
            else
            {
                cellVal.EntireColumn.ColumnWidth = Math.Min((double)cellVal.EntireColumn.ColumnWidth + 5, 255);
            }
            loop++;
        }
        if (cellText != "")
        {
            row.Add(cellText);
        }

    }
    if (row.Count > 0)
    {
        nonBlankValues.Add(row);
    }
}