Question : SSRS conditional Formatting


I have 2 Questions
1. I am pulling a date from a table but when its displayed I get Date and time -5/22/2009 12:00am I just want the date to show. Can I take that off?
2. Is there a way to do conditional format where is a date is past a certain date then is show up red ect.  

Answer : SSRS conditional Formatting

You can change the background or the font color depending on what you want

For font color:

=IIF(Fields!YouDateTimeColumn.Value <"TheDateYOuWant", "RED","Black"))  

 

For background color:

=IIF(Fields!YouDateTimeColumn.Value <"TheDateYOuWant", "RED","White"))    

If you want to change the dolloar format is the letter   C

For further reference on conditional formatting you can refer to this link

http://technet.microsoft.com/en-us/library/ms157328.aspx

 

Random Solutions  
 
programming4us programming4us