I have a stored procedure which returns Id, FileContent and description of Images used in a project. I have a requirement to display the images in 3 by 3 format . I know we can do it in a table either vertically or horizontally but how can i get it 3 by 3 like below.
Image1 Image2 Image 3
Image4 Image5 Image 6
this is little bit tricky ... try to get output of SQL query like this
See output looks like
now what you have to do take a matrix and do a row grouping by [grp] column & column grouping on ImageName...
your report will look like; cheers :-)