我正在使用Crystal Report构建报告。 在此报告中,我有一个HTML文本格式的字段。所以,如果我尝试插入一个html标签为
<b> |<br/>
我没有任何问题,但如果我尝试插入HTML表格,则无法显示。
这是HTML表的代码
<b>EMOCROMOCITOMETRICO</b>
</br>eseguito in data 10-30-2017</br>ESITO: </br></br>
<table>
<tr>
<th width="200px">Parametro</th>
<th width="100px">Valore</th>
<th width="50px">U.M.</th>
<th width="100px">Valori di Riferimento</th>
</tr>
<tr>
<td width="200px" style='border-bottom:1pt solid black;'>RBC</td>
<td width="100px" style='border-bottom:1pt solid black;'>5.000</td>
<td width="50px" style='border-bottom:1pt solid black;'>10*6/uL</td>
<td width="100px" style='border-bottom:1pt solid black;' align="right">4.00 - 5.40 </td>
</tr>
</table>
我在Crystal Report中插入了一个Field,因此右键单击它,Format Object - &gt;段落 - &gt;解释文本部分的文字Html。
答案 0 :(得分:1)
不幸的是,Crystal Reports支持的HTML标记相当有限。例如,根本不支持<th>
标记。支持<tr>
标记,但它最终更像<div>
标记,并且不维护表的列结构,而只创建段落中断。
您也不支持尝试使用的某些属性。这是一个列出支持内容的链接。
https://apps.support.sap.com/sap/support/knowledge/public/en/1217084
您需要使用CR中提供的其他工具来构建表格。