是否可以忽略Excel警告

是否可以忽略Excel警告

本文介绍了使用EPPlus生成电子表格时,是否可以忽略Excel警告?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用C#和EPPlus在电子表格中的单列中存储数字和非数值的混合。当我使用Excel打开电子表格时,它会在单元格中显示绿色三角形,数字值表示数字保存为文本,并提供忽略特定单元格的选项。我可以从代码中执行,还是一些Excel特定功能?

I'm storing mix of numeric and non-numeric values in a single column in spreadsheet using C# and EPPlus. When I open spreadsheet with Excel it shows green triangles in the cells with numeric values giving warning that 'Number Stored as Text' and giving option to ignore it for particular cell. Can I do it from code or is it some Excel specific feature?

推荐答案

你真的有2个选项使用代码:

You really have 2 options using code:


  • 更改到TEXT(我相信epplus中的等价物是 Cell [row,column] .Style.NumberFormat.Format

  • change the .NumberFormat property of Range to TEXT (I believe equivalent in epplus is Cell[row, column].Style.NumberFormat.Format)

前缀任何带的数字一个单引号) - Excel然后将数字视为TEXT - 在视觉上,它显示的数量是,但公式将显示单引号。

prefix any number with ' (a single quote) - Excel then treats the number as TEXT - visually, it displays the number as is but the formula will show the single quote.

或者,我不建议依靠


  • 播放Excel的属性,并取消选择选项显示警告

这篇关于使用EPPlus生成电子表格时,是否可以忽略Excel警告?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 22:06