Saturday, October 31, 2020

SSRS : How to bold a row in RDLC report by conditionally

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.

SSRS RDLC Report

 

·        Select Data Row in RDLC report

SSRS RDLC Data row

·        In Property window,  expend the font property and select the FontWeight field, and select the Expression from list.

SSRS RDLC Property Font

 

·        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")

 

SSRS RDLC Property Expression

 

After changes, Total row in report is bold

 

SSRS Report RDLC

 

1 comment:

ajay said...

I am really happy to say it’s an interesting post to read. I learn new information from your article, you are doing a great job. Keep it up
Empower your Business with ReactJS Development

SQL Server - Identify unused indexes

 In this blog, we learn about the index usage information (SYS.DM_DB_INDEX_USAGE_STATS) and analyze the index usage data (USER_SEEKS, USER_S...