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.
Author |
Topic |
debra1979
Starting Member
1 Post |
Posted - 2011-07-19 : 16:11:54
|
Hi,Could you help me understand how to dynamically import an image?What I want to do is to have the image on the report based on the condition of a data field. So for eg when the user selects country as US he gets the US flag as image. I am sure this is pretty simple, and i am being stupid.Thanks for your helpDebra |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2011-07-20 : 07:50:50
|
make type of image as external and then write an expression for image based on field you want like=IIF(Fields!YourField.value=somevalue,first iamge path,second image path)------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/ |
|
|
|
|
|