Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Gopi_E
Creator II
Creator II

how to get images using buffer info load

Hi qlikers,

I hope every one doing well,

i want to show images to showing for particular country or field value, here i am using bellow code and if representation i selected image i am not getting images

Touchpoint_Images:
Buffer Info LOAD * Inline [
filedvalue, Imagepath
helpline, c:\images\mobile.jfif
through_app, c:\images\app.jpg
]; 

thanks in advance 

Labels (1)
1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

From the relevant help page (https://help.qlik.com/en-US/qlikview/April2019/Subsystems/Client/Content/QV_QlikView/Scripting/Scrip...)

 

Example:  

Info LOAD * inline[

LinkedField, ImageFileName

QlikView, QlikViewLogo.png

];

Result:

Only LinkedField will be visible as a field name.

If you add at text object to the sheet with representation set to Image, and enter the text =Info(LinkedField), the text object will show the image file name.

 

 


talk is cheap, supply exceeds demand

View solution in original post

1 Reply
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

From the relevant help page (https://help.qlik.com/en-US/qlikview/April2019/Subsystems/Client/Content/QV_QlikView/Scripting/Scrip...)

 

Example:  

Info LOAD * inline[

LinkedField, ImageFileName

QlikView, QlikViewLogo.png

];

Result:

Only LinkedField will be visible as a field name.

If you add at text object to the sheet with representation set to Image, and enter the text =Info(LinkedField), the text object will show the image file name.

 

 


talk is cheap, supply exceeds demand