在我的crystal报表中,有两列Name和Amount。我想要的是,如果Amount是空白的,那么Name必须是粗体,否则它将是常规字体。我不知道如何写出这个条件的公式。任何帮助将不胜感激。- 谢谢-谢谢
Name
Amount
eoxn13cs1#
您应该能够:
如果您的 Amount 字段是一个数字(可能是,但您使用了短语“is blank”),则将其与0而不是空字符串进行比较。
的数据
j9per5c42#
试试这个
if Isnull(<<Databsefield Amount>>) then crBold Else crRegular
字符串
hgncfbus3#
if ({DatabaseField.Column1}="Your Text") then crBold else if({DatabaseField.Column1}="Your Text") then crBold else crRegular
3条答案
按热度按时间eoxn13cs1#
您应该能够:
如果您的 Amount 字段是一个数字(可能是,但您使用了短语“is blank”),则将其与0而不是空字符串进行比较。
的数据
j9per5c42#
试试这个
字符串
hgncfbus3#
字符串