HTML to Excel: How can tell Excel to treat columns as numbers?(HTML 到 Excel:如何告诉 Excel 将列视为数字?)
问题描述
在 Excel 中打开 HTML 时需要实现以下目标 (Response.contentType="application/vnd.ms-excel")
:
I need to achieve the following when opening an HTML in Excel (Response.contentType="application/vnd.ms-excel")
:
- 强制 Excel 将 td 单元格的内容视为数字
- 进行上述操作,以便任何后续用户输入的公式都适用于这些单元格(打开电子表格时)
到目前为止,我成功地将 style="vnd.ms-excel.numberformat:0.00"
添加到有问题的 td 单元格中.当我在 Excel 中右键单击单元格时,单元格的内容正确显示为数字,但是公式不起作用.
So far I was successful with adding style="vnd.ms-excel.numberformat:0.00"
to the td cells in question. The contents of the cells are correctly shown as numbers when I right click on them in the Excel, however the formulas don't work.
如果成功,该技术将非常有用,因为用户可以根据自定义要求使用适当的公式对任何 Web Excel 报表进行增强.提前致谢.
If successful, that technique would be quite useful because any web Excel report could be user enhanced with appropriate formulas according to custom requirements. Thanks in advance.
推荐答案
如果你给你的页面添加一个 CSS 类:
If you add a CSS Class to your page:
.num {
mso-number-format:General;
}
.date {
mso-number-format:"Short Date";
}
然后在你的 TD 上打这些课程,这行得通吗?
And slap those classes on your TD's, does it work?
<td class="num">34</td>
<td class="num">17.0</td>
<td class="date">12/17/2008</td> <!-- if you are playing with dates too -->
更新: 其他格式选项来自@Aaron.
这篇关于HTML 到 Excel:如何告诉 Excel 将列视为数字?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:HTML 到 Excel:如何告诉 Excel 将列视为数字?
基础教程推荐
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 动态更新多个选择框 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01