Hi I am new to sql reporting services... what I need to do is to bold the text of "student name" column who dint registered in ny course..
Can some body tell me how to achieve this.
thanks
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
rasagna ramireddyPosted Jul 10, 2010, 2:51 AM
get the velue from db whether that student is registered or not say it as "notregistered" and
try this expression to the "student name" column ForeColor Property
=iif(Fields!notregistered.Value = "True" , "Red", "Transparent")