Excel共享公式展开
我正在使用 C# 中的 OpenXML 库来读取 Excel 文件。
我的要求之一是能够显示每个单元格的确切公式。 OpenXML 编码文件使用“共享公式”来减小文件大小。
像这样:
D3 : <x:f t="shared" ref="D3:D6" si="1" >D2+C3</x:f><x:v >130</x:v>
D4 : <x:f t="shared" si="1" /><x:v >136</x:v>
D5 : <x:f t="shared" si="1" /><x:v >141</x:v>
D6 : <x:f t="shared" si="1" /><x:v >147</x:v>
在上面的例子中它是一个相当简单的根公式(D2+C3),显然这些可以是任意复杂的。
我想知道的是是否有可用的库或示例代码可以采用任何较低的单元格(例如 D4、D5、D6)并返回“非共享”公式?
例如,对于 D6,这将返回“D5+C6”
I am using the OpenXML libraries from C# to read Excel files.
One of my requirements is to be able to show the exact formula for each cell that has one. The OpenXML encoded file uses "shared formulas" to reduce file size.
Like this:
D3 : <x:f t="shared" ref="D3:D6" si="1" >D2+C3</x:f><x:v >130</x:v>
D4 : <x:f t="shared" si="1" /><x:v >136</x:v>
D5 : <x:f t="shared" si="1" /><x:v >141</x:v>
D6 : <x:f t="shared" si="1" /><x:v >147</x:v>
Its a fairly simple root formula in the example above (D2+C3) and obviously these can be arbitrarily complex.
What I want to know is if there is a library or example code available that takes any lower cell (e.g. D4,D5,D6) and return the "unshared" formula?
e.g. for D6 this would return "D5+C6"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不容易,但可以做到。我要做的就是使用 Linq。
首先,我会找到
.Value <> 的任何单元格“”
和.@t = “共享”
。然后我会执行.ElementsAfterSelf
的.TakeWhile
,其中.Value = ""
和< v:f>.@t = "共享"
。一旦我有了 IEnumerable(Of XElement),我就会对第一个 1 上的公式使用解析器,然后执行
For Each
来创建一个新公式每个 XElement,递增单元格的相对值。1Eric White 最近的系列 使用 C# 和 LINQ 编写递归下降解析器可能是我见过的最好的。
Not easily, but it can be done. What I would do is use Linq.
First I would find any cells where
<v:f>.Value <> ""
and<v:f>.@t = "shared"
. Then I would do a.TakeWhile
of the.ElementsAfterSelf
where<v:f>.Value = ""
and<v:f>.@t = "shared"
.Once I have that IEnumerable(Of XElement), I would then use a parser for the formula on the first one1 and then do a
For Each
to create a new formula for each XElement, incrementing the cell's relative value(s).1The recent series by Eric White on Writing a Recursive Descent Parser using C# and LINQ is probably the best I've seen.