I am working on a report, which I would like to display an image in my database from a query with a parameter. For example:
SELECT pictureATTACHMENT
FROM myDatabase.dbo.ATTACHMENT
WHERE DESCRIPTION LIKE @thisCampaign + '%'
My query returns a file path to the image: For example:
\\DASERVER\FOLDER\FOLDER\Data\Attachment\filename.png
How do I need to format the expression for the report to display the image?
I have tried doing: =file:\\DASERVER\FOLDER\FOLDER\Data\Attachment\filename.png
But no luck.
Many thanks in advance!!