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 |
PatDeV
Posting Yak Master
197 Posts |
Posted - 2008-12-23 : 21:34:33
|
Hi all,I would like to know if i would be able to fill the color in text box as the value of column.Such as I have 4 text box in line. each from 1-25, 2nd 26-50, 3rd 51-75, and 4th 76 -100 range. I want to color the text box as if the value is 24% then color the text box 1 with red.. and if the value is 29% then color the textbox 1 till 25 and text box 2 with 4 more and show the value?Is it possible? if so how?Please guide!!ThanksPat |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2008-12-29 : 01:10:05
|
yup. you need to write expression for color property of cell. this is available from properties window by selecting cell.just give expression like=IIF(Fields!yourfield.value<=24,"red","").. |
 |
|
|
|
|