Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Display image from local disk

Hi ,

I have an excel sheet. For ex:

ImageExcel.xls

Image       Path

Sunflower    "C:\ documents and settings \image1.jpg"

Rose           " D:\sam\image2.jpg"

Will qlikview read my excel sheet ,  locate the place on my hard disk as specified under the "Path" columns and  display me the image on the sheet?

Please help.

Thanks,
Sam

3 Replies
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!
Not applicable
Author

hi

try this

BUNDLE INFO LOAD * INLINE [

    Image, Path

    Sunflower, C:\ documents and settings \image1.jpg

     Rose, D:\sam\image2.jpg

    ];

Sumit

SunilChauhan
Champion
Champion

try using this

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;

Sunil Chauhan