标签: c# crystal-reports-xi
我想根据水晶报表中的字段值返回文本或数字
local numberVar i; i:=Roundup(({@a}/{@b})*100,0); if{@a}=0 then ToText('N/A') else ToText(i);
结果总是出现在水晶报告中
由于使用ToText()将整数值转换为文本,因此整数结果将附加.00
答案 0 :(得分:7)
ToText(x,y)其中y是一个整数,表示在x中携带值的小数位数。
http://publib.boulder.ibm.com/infocenter/radhelp/v7r5/index.jsp?topic=%2Fcom.businessobjects.integration.eclipse.designer.doc%2Fhtml%2Ftopic629.html