使用EPPlus Excel - 如何忽略excel错误检查或删除单元格左上角的绿色标记

时间:2012-08-08 05:23:53

标签: c# excel epplus

我使用EPPlus导出excel 2007文件。该文件可以正常导出,但我在设置列格式时遇到了一些问题。我的带有数字样式的字符串列(采购订单号,例如49000001)将在每个单元格的左上角以绿色标记导出,如何将其删除?

我尝试将数字格式设置为“常规”,但它不起作用

请帮忙。

p.s我使用C#

7 个答案:

答案 0 :(得分:15)

EPPLus目前不支持禁用该绿色标记。但是,可以修改项目以抑制它。首先,您需要向项目中添加一个新类,ExcelIgnoredError.cs:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml;

namespace OfficeOpenXml
{
    public class ExcelIgnoredError : XmlHelper
    {
        private ExcelWorksheet _worksheet;

        /// <summary>
        /// Constructor
        /// </summary>
        internal ExcelIgnoredError(XmlNamespaceManager ns, XmlNode node, ExcelWorksheet xlWorkSheet) :
            base(ns, node)
        {
            _worksheet = xlWorkSheet;
        }


        public bool NumberStoredAsText
        {
            get
            {
                return GetXmlNodeBool("@numberStoredAsText");
            }
            set
            {
                SetXmlNodeBool("@numberStoredAsText", value);
            }
        }


        public bool TwoDigitTextYear
        {
            get
            {
                return GetXmlNodeBool("@twoDigitTextYear");
            }
            set
            {
                SetXmlNodeBool("@twoDigitTextYear", value);
            }
        }


        public string Range
        {
            get
            {
                return GetXmlNodeString("@sqref");
            }
            set
            {
                SetXmlNodeString("@sqref", value);
            }
        }
    }
}


接下来,您需要修改ExcelWorkSheet.cs,添加以下代码:

public ExcelIgnoredError _ignoredError;

public ExcelIgnoredError IgnoredError
{
    get
    {
        if (_ignoredError == null)
        {
            // Check that ignoredErrors exists
            XmlNode node = TopNode.SelectSingleNode("d:ignoredErrors", NameSpaceManager);

            if (node == null)
            {
                CreateNode("d:ignoredErrors");
            }

            //Check that ignoredError exists
            node = TopNode.SelectSingleNode("d:ignoredErrors/d:ignoredError", NameSpaceManager);

            if (node == null)
            {
                CreateNode("d:ignoredErrors/d:ignoredError");
                node = TopNode.SelectSingleNode("d:ignoredErrors/d:ignoredError", NameSpaceManager);
            }

            _ignoredError = new ExcelIgnoredError(NameSpaceManager, node, this);
        }

        return (_ignoredError);
    }
}


编译EPPPlus解决方案,将其包含在您的项目中,您将能够使用与此类似的代码删除标记:

//Get a reference to the worksheet
ExcelWorkSheet sheet = package.WorkBook.WorkSheets(0);

//Set the cell range to ignore errors on to the whole sheet
sheet.IgnoredError.Range = Sheet.Dimension.Address;

//Do not display the warning 'number stored as text'
sheet.IgnoredError.NumberStoredAsText = true;

答案 1 :(得分:1)

将采购订单无值转换为数字,然后存储在单元格中。每个单元格左上角的绿色标记即将到来,因为您将数字存储为字符串。

答案 2 :(得分:1)

此代码有效

private void removingGreenTagWarning(ExcelWorksheet template1, string address)
            {
                var xdoc = template1.WorksheetXml;
                //Create the import nodes (note the plural vs singular
                var ignoredErrors = xdoc.CreateNode(System.Xml.XmlNodeType.Element, "ignoredErrors", xdoc.DocumentElement.NamespaceURI);
                var ignoredError = xdoc.CreateNode(System.Xml.XmlNodeType.Element, "ignoredError", xdoc.DocumentElement.NamespaceURI);
                ignoredErrors.AppendChild(ignoredError);

                //Attributes for the INNER node
                var sqrefAtt = xdoc.CreateAttribute("sqref");
                sqrefAtt.Value = address;// Or whatever range is needed....

                var flagAtt = xdoc.CreateAttribute("numberStoredAsText");
                flagAtt.Value = "1";

                ignoredError.Attributes.Append(sqrefAtt);
                ignoredError.Attributes.Append(flagAtt);

                //Now put the OUTER node into the worksheet xml
                xdoc.LastChild.AppendChild(ignoredErrors);
            }

用作

removingGreenTagWarning(template1, template1.Cells[1, 1, 100, 100].Address);

答案 3 :(得分:0)

是的,EPPlus不能将数据视为数字,具体取决于其值。如果您的基础数据是字符串数据类型,那么您可以尝试以numeric数据类型获取它。 例如如果从存储过程中获取数据,请尝试将其作为数值。我们实施它时遇到了问题。我们使用相同的Web存储过程并生成excel。出于格式化原因,Web UI需要它为字符串数据类型,并且EPPlus显然需要它是数字格式,以便它可以将其显示为数字。解决方案是在使用C#代码中的EPPlus导出到excel时将所需数据转换为数字。因此,您需要编写转换函数,将DataTable中的必需字段转换为您需要的数据类型(或者在存储过程中使用强制转换或转换实现转换逻辑)。

总结: - 编写一个C#函数,在使用EPPlus将它作为excel表发送之前,转换你获得的DataTable中列的数据类型。

答案 4 :(得分:0)

除了@briddums的答案外,在EPPlus 5中,您还可以忽略错误,而无需接触EPPlus源。

var p = new ExcelPackage();
var ws = p.Workbook.Worksheets.Add("IgnoreErrors");

ws.Cells["A1"].Value = "1";
ws.Cells["A2"].Value = "2";
var ie = ws.IgnoredErrors.Add(ws.Cells["A2"]);
ie.NumberStoredAsText = true;   // Ignore errors on A2 only

答案 5 :(得分:-1)

我以更简单的方式解决了这个问题。 例如。如果我将值“123”定义为对象而不是字符串,则将其存储到excel文件中。

答案 6 :(得分:-1)

您可以使用

worksheet.Cell[1,1].Formula = "TEXT(" + cellvalue ")";