【发布时间】:2018-02-20 11:52:32
【问题描述】:
所以我有一个包含产品数据的复杂 Excel 表,我正在使用公式和 VBA 来加快排序过程。但是,我试图在单元格中使用 HTML 代码,当我复制 Concatenate 时,它会添加一个带有 HTML 标签的额外“”。例如:
<h3 class=""showOnMobile"">Swipe right or rotate your device to see full table</h3>
<div class=""tablewrapper"">
这是我在 excel 中的串联
=CONCATENATE(E3,F3,R3)
基本上,每个单元格都包含您在下面看到的代码。 单元格 R3 基本上有单数引号“”
<h3 class="showOnMobile">Swipe right or rotate your device to see full table</h3>
<div class="tablewrapper">
这是我复制并粘贴连接后在我的 HTML 编辑器中显示的代码
<p>Work Floor Ramp</p>
<ul>
<li> Heavy-duty polyethylene ramp compatible with DRP20.</li>
<li> Fitted with locating pins which slot into DRP20 work floor for added stability when manoeuvring drum.</li>
<li> Manufactured with non slip resistant texture.</li>
<li> Features user friendly gradient for easy loading.</li>
</ul>
<h3 class=""showOnMobile"">Swipe right or rotate your device to see full table</h3>
<div class=""tablewrapper"">
<table>
<tbody>
<tr>
<th>Model No:</th>
<td>12345</td>
</tr><tr>
<th>Dimensions (W x D x H):</th>
<td>810 x 1290 x 180mm</td>
</tr>
</tbody>
</table>
</div>
【问题讨论】:
-
单元格
E3、F3和R3中有什么内容?请编辑问题以包含此信息。
标签: html excel excel-formula