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.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 SSRS Tick Mark in Report

Author  Topic 

Dev@nlkss

134 Posts

Posted - 2009-05-12 : 06:27:49
Hi all,
I have a report which generates daily progress and includes Status column which returns some text like completed or inprogress.
My requirement is if status is completed then i want to show a "tick mark" else same text.
how can i achive this in my report.


$atya.

Love All Serve All.

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2009-05-12 : 09:35:40
you can add a image to the cell and set an expression for source property based on field value like

=IIF(Fields!Status.value="Completed","/.../tickmark.gif",other image path here)
Go to Top of Page
   

- Advertisement -