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

本文关键字:左上角 单元格 删除 标签 检查 Excel EPPlus 何忽略 错误 excel 使用 | 更新日期: 2024-11-01 01:56:24

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

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

请帮忙。

p.s 我使用 C#

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

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;

除了@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

此代码有效

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);

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

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

总结: - 编写一个 C# 函数来转换您获得的数据表中列的数据类型,然后再使用 EPPlus 将其作为 excel 表发送。

我已经以更简单的方式解决了这个问题。例如,如果我将值"123"定义为对象,而不是字符串,那么它会存储到 excel 文件中 OK。

您可以使用

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