I have got a report that consists of several matrices aligned right next to each other. Not all the cells of the report contain data and appear as blanck cells so i created the following statement in order to have "N/A" on all cells that have no value:
=IIf(isNothing(Fields!Belfast.Value),"N/A",Fields!Belfast.Value)
and what i need to do is to give all cells that have the "N/A" value to have a colour so i created this statement in the Text properties under the Fill Menu:
=IIf(Fields!Belfast.Value = "N/A","#faa1a1",Fields!Belfast.Value)
but when i preview the report no cells containoing "N/A" are changing colour according to my cell Fill statement.
what am i doing wrong?