Quantcast
Channel: SQLServerCentral » SQL Server 2014 » Development - SQL Server 2014 » Latest topics
Viewing all articles
Browse latest Browse all 3145

SSRS Conditional Formatting Issue

$
0
0
I have an SSRS report that I want to use conditional formatting on. When the value of the cell = 0, I want the background yellow, and the font red. For the background, I have:=IIF(Fields!reads.Value = 0, "Yellow","White")For the font color, I have=IIF(Fields!reads.Value = 0,"Red", "Black")The issue is that the background one is working properly, while the font one is not. If the value = 0, the font is invisible. The value is present in the report (I can export to excel and see it just fine). If I change both the background and font to the defaults, the value is STILL invisible. I have attached a screen shot to clarify.

Viewing all articles
Browse latest Browse all 3145