本文介绍了比较值时更改字体颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想更改字体颜色并使用表达式:
= IIF(!字段qty_req_level_1.Value<!(字段stock.Value +字段foperqty.Value), 红色, 黑色)
,但它不工作,每次qty_req_level_1<字体改变颜色股票,
如何更正?
I want to change the font color and use the expression:
= IIf ( Fields!qty_req_level_1.Value < (Fields!stock.Value + Fields!foperqty.Value), "red", "black" )
but it is not working, the font changed color every time that qty_req_level_1 < stock,
How I can correct it?
推荐答案
这篇关于比较值时更改字体颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!