开发者

How to reference embedded SQL Server Reporting Service 2008 images

开发者 https://www.devze.com 2023-01-16 05:32 出处:网络
I have a SQL Server 2008 report with a bit field - IsUS I\'d like to display embedded images depending on IsUS bit value.

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?

How to reference embedded SQL Server Reporting Service 2008 images

Below is the result after applying Fillet's answer

-------------------- Result --------------------

How to reference embedded SQL Server Reporting Service 2008 images


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") 
0

精彩评论

暂无评论...
验证码 换一张
取 消