Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Create a grid with images in qlikview

Hi,

If I want to create a grid with images in Qlikview - how would i do that?

I want it to sort images of products from left to right and up to down. Like this:

Image1 Image2 Image3
Image4Image5 Image6
Image7 Image8 Image9
Image10 Image11 Image12
Image13 Image14 Image15
Image16 Image17 Image18

Is there a function to make a grid like this inside of qlikview?

Thanks!

3 Replies
maleksafa
Specialist
Specialist

you need to use bundle load, and change the expression representation to image.

check the below document for more information.

Load Images with the help of Bundle load

julian_rodriguez
Partner - Specialist
Partner - Specialist

There is not a function per se, but you can create a table like this:

LOAD * INLINE [

    x, y, Image

    1, 1, Image1

    1, 2, Image2

    1, 3, Image3

    1, 4, Image4

    2, 1, Image5

    2, 2, Image6

    2, 3, Image7

    2, 4, Image8

    3, 1, Image9

    3, 2, Image10

    3, 3, Image11

    3, 4, Image12

    4, 1, Image13

    4, 2, Image14

    4, 3, Image15

    4, 4, Image16

];

And then use a Pivot table, with the Image option enabled, on the "Representation" field of the expression. Use the X and Y fields as dimensions, and on the expression you can use the URL of the image.

Grid Images.JPG.jpg

jagan
Luminary Alumni
Luminary Alumni

Hi,

Check this thread

Bundle Info Load

and use the list box to show the images

Regards,

Jagan.