views:

21

answers:

1

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

+2  A: 

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") 
Fillet
> "edit the properties of the image" - Right on!
Sung Meister

related questions