Hi Everyone,
Can you tell me how to conditionally print table column data?
I created a simple tabular report and have set up the table relations with the Tables button.
The output shows each address along with the people who live at each address.
Currently, the report repeats the address for every person who lives at each address.
I would like to print each address detail once then print the people who live at that address. Can you tell me how to do this?
Here is an example:
Thanks in advance.
Truly,
Emad-ud-deen Richard Leiman
Can you tell me how to conditionally print table column data?
I created a simple tabular report and have set up the table relations with the Tables button.
The output shows each address along with the people who live at each address.
Currently, the report repeats the address for every person who lives at each address.
I would like to print each address detail once then print the people who live at that address. Can you tell me how to do this?
Here is an example:
Code:
The way it is now:
Address City State People
---------------- --------------- ----- --------------
123 Test Ave. Freehold NJ First Person
123 Test Ave. Freehold NJ Second Person
123 Test Ave. Freehold NJ Third Person
338 High St. Huntsville AL First Person
338 High St. Huntsville AL Second Person
This is what I would like to do:
Address City State People
---------------- --------------- ----- --------------
123 Test Ave. Freehold NJ First Person
Second Person
Third Person
338 High St. Huntsville AL First Person
Second Person
Truly,
Emad-ud-deen Richard Leiman