我想使用负字段进行颜色变化,并希望在ssrs中显示为正值

时间:2017-01-31 15:30:42

标签: reporting-services

我想使用负字段进行颜色变化,并希望在ssrs中显示为正值。 这是我在填充颜色属性

中使用的
=Switch(Fields!tmp_DayDifference.Value < 0, "Firebrick",
  Fields!tmp_DayDifference.Value > 0,"DarkSeaGreen" ,
 true, "NoColor")

从db显示为

=Fields!tmp_DayDifference.Value

2 个答案:

答案 0 :(得分:1)

NoColor不是SSRS中颜色属性的有效值,而是尝试使用Transparent

=Switch(Fields!tmp_DayDifference.Value < 0, "Firebrick",
  Fields!tmp_DayDifference.Value > 0,"DarkSeaGreen" ,
 true, "Transparent")

答案 1 :(得分:0)

如果要将值显示为正数,则只需更改属性框中的格式即可。我们假设您开始使用带有否定enter image description here

的标准格式

您可以删除负数的括号: enter image description here