Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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