和 之间有什么区别<是>在 Office Open XML 中?

发布于 2024-10-12 20:31:27 字数 419 浏览 2 评论 0 原文

这两个 Office Open XML 片段有什么区别?

<c r="A2" t="str">
  <v>btyler</v>
</c>

<c r="B2">
  <is><t>btyler</t></is>
</c>    

注意:我根据规范手动创建的第二个示例,第一个示例来自实际的 Excel 工作簿。

根据规范,两者似乎都有效且几乎相同,所以我想知道为什么会有t="str" 看起来做同样的事情时。 Excel 何时选择使用其中一种而不是另一种?

What's the difference between these two Office Open XML fragments?

<c r="A2" t="str">
  <v>btyler</v>
</c>

and

<c r="B2">
  <is><t>btyler</t></is>
</c>    

note: The second sample I created manually based on the spec, the first is from an actual Excel workbook.

Both seem valid and pretty much identical according to the spec, so I'm wondering why there is t="str" when <is> seemingly does the same thing. When does Excel choose to use one over the other?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浮生未歇 2024-10-19 20:31:28

根据 11.18.11 ST_CellType

str(字符串)包含公式的单元格
字符串。

因此,如果公式位于 元素中,您只会使用第一个示例。

第二个用于内联字符串, 元素应具有 t 属性 'inlineStr'。这只是输出的富文本,不会存储在共享字符串表中。

所以你的第一个将像这样有效:

<x:c r="C6" s="1" vm="15" t="str">
   <x:f>CUBEVALUE("xlextdat9 Adventure Works",C$5,$A6)</x:f>
   <x:v>2838512.355</x:v>
</x:c>

你的第二个将像这样有效:

<x:c r="B2" t="inlineStr">
   <is><t>btyler</t></is>
</c>

According to the documentation at 18.18.11 ST_CellType:

str (String) Cell containing a formula
string.

So you would only use your first example if a formula was in the <x:v> element.

The second one is used for inline strings and the <x:c> element should have a t attribute of 'inlineStr'. This will just be rich text that will be outputted and not stored in the sharedstring table.

So your first one would be valid like this:

<x:c r="C6" s="1" vm="15" t="str">
   <x:f>CUBEVALUE("xlextdat9 Adventure Works",C$5,$A6)</x:f>
   <x:v>2838512.355</x:v>
</x:c>

Your second one would be valid like this:

<x:c r="B2" t="inlineStr">
   <is><t>btyler</t></is>
</c>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文