Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
p_zaccheddu
Contributor II
Contributor II

How do you display an image from a shared folder in a straight table?

Hi everyone, this is driving me crazy. It seems like a simple thing but I'm not succeeding. I would just like to display images contained in a network folder in a table.
The network folder is
a) accessible from the Qlik Sense server
b) accessible by the Qlik Sense service user

I tried these formats:

 

file://[Server name]/[Image Path]

\\[Server name]\[Image Path]

 

Nothing.
Does anyone know what the right format is and if it's possible?

 

 

 

 

 

Labels (1)
1 Reply
Sayed_Mannan
Creator
Creator

Hi,

Try this,

='file:///' & replace([Image Path], '\', '/')

This expression adds ‘file:///’ to the start of the image path and replaces all backslashes with forward slashes. This is necessary because Qlik Sense expects the image URL in this format.

Also, remember to replace [Image Path] with the actual field name in your data that contains the image paths.