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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
vardhancse
Specialist III
Specialist III

Need to upload photos in qlikview

Hi All,

I have a requirement is that, Need to upload photos in my qlikview dashboard.

Can any one help me out in getting the same.

Thanks in advance for your support.

Thanks & Regards,

Sasi

10 Replies
rustyfishbones
Master II
Master II

Hi

Go into Script and hold Ctrl and press Q B J and the following code will appear like magic

// Script to bundle Jpeg thumbnails into the QlikView document

for each vBundleExt in 'jpg', 'jpeg', 'jpe', 'jfif', 'jif', 'jfi'

for each vBundleFoundFile in filelist( GetFolderPath('MyPictures') & '\*.'& vBundleExt )

BundleFileList:

// BUNDLE IMAGE_SIZE(X, Y) = A thumbnail of this size wll be stored in

// the document. The image will keep its width/height ratio.

BUNDLE IMAGE_SIZE(80, 80)Info Load FileLongName, FileLongName;

Load @1:n as FileLongName Inline "$(vBundleFoundFile)"   (fix, no labels);

Next vBundleFoundFile

Next vBundleExt

Just place your images in your MyPictures folder and they will then be available in tyour Qlikview document when you reload

I hope that helps

Regards

Alan