Hi there,
I am playing around with pdf report and I really like what I see…but now it’s getting difficult
table_house
-id_house
-my_house
table_cars
-id_cars
-id_house
-my_cars
table_drivers
-id_drivers
-id_house
-id_cars
-drivers
Now I want a PDF that will look like this:
HEAD
Block 1:table_house (only 1 result)
->I don’t want to have this block go over 2 pages unless there are a lot of drivers listed
Block 2.1:table_cars WHERE id_house = table_house.id_house (only 1 result)
Block 2.2:table_drivers WHERE id_house = table_cars.id_house AND id_cars = table_cars.id_cars (multiple data displayed as grid)
->I don’t want to have this block go over 2 pages unless there are a lot of drivers listed
Block 3.1:table_cars WHERE id_house = table_house.id_house (only 1 result)
Block 3.2:table_drivers WHERE id_house = table_cars.id_house AND id_cars = table_cars.id_cars (multiple data displayed as grid)
…and so on, depending on numbers of results on cars
FOOTER
and on top of all this I want to call images from a table that will display on bottom of each site…maybe not on each site but in footer…I also tried to draw a line after Block 1 but your macro did not work for me (I probably made a mistake). Right now all my data on Block 2 (this is as far as I got with project at this point) shows up in one line. So all results are on 1 line. I need X Y Positioning for Block 1 though. Maybe you guys can give me a hint how to set this up in a nice way. Is it possible to call a grid application to display Block x.2 ?