i want to changes color when condition in rdlc report.
when A found, change font color in red
Hi akhter,
Go to your report designer.
Right Click on TextBox -> Text Box Properties…
Select Font tab -> Color (fx)
Write below expression.
= IIF(Fields!Status.Value = "A", "Red", "Black")
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.