how to change font style of cell in rdlc report?
how to change font style of cell in rdlc report . I want to change only those font in cell that start with "G". I already tried but I can't solve this.
Select the complete row from left bar and you can change the font there. It will change the font of all the cells in that row. Some more details here and from msdn.
Follow these steps :
Right click textbox -> Properties -> Font -> Click on fx -> And then give this expression =IIf(Fields!MyField.Value.ToString().StartsWith("G"), "Arial","Cooper Black")