开发者

Issue with color fillling in SSRS

开发者 https://www.devze.com 2023-04-10 00:16 出处:网络
I have a calendar table with data based on some conditions. The color gets filled only in the boxes where there is data and the empty boxes are n开发者_开发问答ot colored. How do I get all the boxes c

I have a calendar table with data based on some conditions. The color gets filled only in the boxes where there is data and the empty boxes are n开发者_开发问答ot colored. How do I get all the boxes colored irrespective of the data's presence?

    =IIf(DateDiff("d",Fields!EndofDate.Value, Fields!EndDate.Value) > 0 ,"White","Yellow")

Please help!!!

Thanks


On the textbox properties of your date field, click on Fill, then click on the expression button next to Fill Color and enter the following expression:

=IIF(IsNothing(Fields!EndofDate.Value),"White","Yellow")

That will make all the fields with NULL values have a white background and all others have a yellow background.


I have possibly another solution which you can try, instead of using a IsNothing you can use a Choose function

E.g. =Choose(Fields!change.Value+1, "Gold", "Blue"....)

So if there is no change instead of "Gold" you can just insert ""

0

精彩评论

暂无评论...
验证码 换一张
取 消