Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
Dev@nlkss
134 Posts |
Posted - 2008-12-29 : 06:54:23
|
Hi All,In my report i am displaying personid,name,address and IsActive.IsActive column contais boolean true/FalseWhat my requirement is can i display Italics(font format/style or some other) for person who are inactive(Instead of displaying IsActive Column).Thanks in Advance.Satya |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2008-12-29 : 12:34:11
|
Yup.you can. select textbox and click view properties icon from top menu and in properties window write an expression for font style like below=IIF(CBool(Fields!IsActive.value)=CBool(true),"Italic","Normal") |
 |
|
|
|
|