HTML 表到 XLS(用于公式的单元格)
我正在做一个 HTML 表格,我希望将其转换为 XLS 文件,
例如我正在使用此表格,
<table>
<tr>
<td>AUD</td>
<td>200.00</td>
</tr>
<tr>
<td>AUD</td>
<td>200.00</td>
</tr>
<tr>
<td>AUD</td>
<td>200.00</td>
</tr>
<tr>
<td>EUR</td>
<td>300.00</td>
</tr>
<tr>
<td>AUD</td>
<td>200.00</td>
</tr>
<tr>
<td>AUD</td>
<td>200.00</td>
</tr>
<tr>
<td>AUD</td>
<td>200.00</td>
</tr>
<tr>
<td>AUD</td>
<td>**=SUM(A2:A10);**</td>
</tr>
</table>
有没有办法使用 =SUM(A2:A10);
创建一个单元格作为公式而不是普通的纯文本?
I am doing an HTML table and I want it to be converted to XLS file
I am using this table for example
<table>
<tr>
<td>AUD</td>
<td>200.00</td>
</tr>
<tr>
<td>AUD</td>
<td>200.00</td>
</tr>
<tr>
<td>AUD</td>
<td>200.00</td>
</tr>
<tr>
<td>EUR</td>
<td>300.00</td>
</tr>
<tr>
<td>AUD</td>
<td>200.00</td>
</tr>
<tr>
<td>AUD</td>
<td>200.00</td>
</tr>
<tr>
<td>AUD</td>
<td>200.00</td>
</tr>
<tr>
<td>AUD</td>
<td>**=SUM(A2:A10);**</td>
</tr>
</table>
Is there a way how I can create a cell with the =SUM(A2:A10);
as a formula and not a normal plain text?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将 html 导入到 excel 时,重要的是要知道有多种特定于 excel 的属性,您可以使用这些属性使 excel 的性能与您期望的几乎一样,几乎可以满足任何业务需求。
您需要添加 Excel 命名空间:
然后您可以在表格单元格中创建公式:
您可以在本文中阅读有关正确实现这些功能的更多信息:
http://www.c-sharpcorner.com/UploadFile/kaushikborah28/79Nick08302007171404PM /79Nick.aspx
When importing html to excel, it is important to know that there are a variety of excel-specific attributes that you can use to get excel to perform pretty much like you would expect it to, for nearly any business requirement.
You'll need the excel namespaces added:
And then you can create a formula in a table cell:
You can read much more about properly implementing these capabilities in this article:
http://www.c-sharpcorner.com/UploadFile/kaushikborah28/79Nick08302007171404PM/79Nick.aspx
这对我有用:
替换
为
This works for me:
replace
with