In this blog, we will learn how to change a row font to Bold in rdlc report on specific condition.
In daily summary leads report, I want to change total row font to Bold.
· Select Data Row in RDLC report
· In Property window, expend the font property and select the FontWeight field, and select the Expression from list.
· In Edit Expression window, use the data set field to create a conditional statement to change row font.
=IIf(Fields!Date.Value="Total","Bold","Default")
After changes, Total row in report is bold