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.
Ho开发者_运维技巧w can I reference embedded images within a column expression?Below is the result after applying Fillet's answer
-------------------- Result --------------------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")
精彩评论