Hi,
I have 3 tables. Main table , secondary_loction table and
secondary_label table.
Now Main table and Secondary_location has one to many relation. e.g
Main Table and Secondary_label also have one to many relation. e.g
Now I want to create a report. Split LOCTION & LABEL on sep rows. And Allow user to select wheather to show LOCATION or LABEL or BOTH)
So result . in case user select BOTH
In case user select only LOCATION then i want to show only first 2 rows
In case user select LABEL want to show only last 2 rows.
Thanks
I have 3 tables. Main table , secondary_loction table and
secondary_label table.
Now Main table and Secondary_location has one to many relation. e.g
Code:
NAME LOCATION
trip245 New York
trip245 Ohio
Code:
NAME LABEL
trip245 Software
trip245 Hardware
Now I want to create a report. Split LOCTION & LABEL on sep rows. And Allow user to select wheather to show LOCATION or LABEL or BOTH)
So result . in case user select BOTH
Code:
ROW NAME LOCATION LABEL
1 trip245 New York
2 trip245 Ohio
3 trip245 Software
4 trip245 Hardware
In case user select only LOCATION then i want to show only first 2 rows
In case user select LABEL want to show only last 2 rows.
Thanks