dance2die
dance2die

Reputation: 36895

How to reference embedded SQL Server Reporting Service 2008 images

I have a SQL Server 2008 report with a bit field - IsUS

I'd like to display embedded images depending on IsUS bit value.
How can I reference embedded images within a column expression?

alt text




Below is the result after applying Fillet's answer
-------------------- Result --------------------

alt text

Upvotes: 1

Views: 1648

Answers (1)

Fillet
Fillet

Reputation: 1426

Drag the "checked" image into the Is US column. Then edit the properties of the image, and set the image expression to:

=iif(Fields!IsUS.Value = 1, "checked", "unchecked") 

Upvotes: 2

Related Questions