Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Getting photos using their path

Hi!

I would want to show a list of images in which it would be as if Qlikview is getting those images from their specific locations.

can this be done?

I'm planing of having people to select an image that they want and when they have selected one then they could print a report in which their selected image will be reflected in the report object.

I hope someone can help me.

6 Replies
kji
Employee
Employee

If the paths are values in a loaded field (or info for that field), you can use a listbox and set the Image options on presentation tab to Image (or info as image).

Not applicable
Author

i tried putting the complete path in excel and made qlikview read the excel file but then it just shows the complete file when i put it in a list box and even if i select represent as image still its the text of the path.

Not applicable
Author

Hi,

I got this answer from someone and thought it might help

You can't do it in a text box, but in a chart you can add Imagen as an expression and select "Image" as the representation.

Thanks,

Sam

kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

    Please have a look at the example available on your Computer.

    You will find this qlikview application at below path in your computer.

    C:\Program Files\Qlikview\Example\Documents

    The application name is President.

 

    Hope this will help.

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
SunilChauhan
Champion
Champion

hello Sir,

I believe u need to use Bundle info to load images.

please check with help.

Thnaks

Sunil

Sunil Chauhan
Not applicable
Author

Try this, I took this from the President example.  This should help for sure.

let vNo = peek('Sequence',-1,'Presidents');              // Get current number of Presidents from Presidents table field        

  for i=1 to $(vNo)                                                                                // Go to the current number of Presidents

Photos:

          load $(i) as Sequence, $(i)&'_150.bmp' as Photo autogenerate(1);

next;

for j=1 to $(vNo)

  BUNDLE INFO LOAD * INLINE [

    Photo, Index

    $(j)_150.bmp, ..\Database\images\$(j)_150.bmp

    ];

       

next j;