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

 

2 comments:

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

apparelbliss said...

Just came across this awesome collection of boys' jogger combos on Apparel Bliss! 🧒🩳 The styles are super trendy and comfortable – perfect for active kids. What’s even better is the amazing value for money. If you're planning to buy boys joggers combo online at the best prices in India, I’d definitely recommend checking this out.

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...