I have made a RDLC report which generates its tablix from the dataset I provided. I need the content of cell(each Textbox in Tablix) to change its backColor based on its content.
Eg:
Name | Val
Joe | 80
Lee | 60
Fred | 30
Bill | 57
I have a condition that less than 60 should change its backcolor to red. (so, 30 and 57 will be getting its backcolor as red).
Note: Since it loads from dataset, you cannot set it directly. Is there any way if we pass conditions as parameters to rdlc and work on its own??