rjmccafferty1
MIS
Is there a way to not show a control/field name in a form if it is identical to the "line" above it? In my example below, I only want to see each client's name appear one time even though some number of subsequent records have the same client name.
In the following simplistic example, I would like only the first iteration of Client1, client2, etc to be seen by the user.
Each iteration of Client1 is the same client. Each iteration of Data1, etc are different data, different records. That is, Client 1 in the below appears in 3 records and the form is sorted by client. If it matters, the form is built on a query
Client1 Data1 Data2 Data3
Client1 Data1 Data2 Data3
Client1 Data1 Data2 Data3
Client2 Data1 Data2 Data3
Client2 Data1 Data2 Data3
Client2 Data1 Data2 Data3
Client3 Data1 Data2 Data3
That is, I would like it to look like:
Client1 Data1 Data2 Data3
Data1 Data2 Data3
Data1 Data2 Data3
Client2 Data1 Data2 Data3
Data1 Data2 Data3
Data1 Data2 Data3
Client3 Data1 Data2 Data3
There are actually more fields involved both to be shown and not to be shown, but it does not change the concepts involved.
Finally, I would like to put a "blank line" beach time the client switches. I know how to put space between every record in a form, but not between groups of records/
I have tried using subforms (show the client name in the form, the data controls in the subform), but then cannot use continuous forms, meaning that I can then only have one client show per "page". I do not want the user to have to keep changing "pages" where only one client at a time can be seen. Using a subform in the footer seems to have the same consequence.
In the following simplistic example, I would like only the first iteration of Client1, client2, etc to be seen by the user.
Each iteration of Client1 is the same client. Each iteration of Data1, etc are different data, different records. That is, Client 1 in the below appears in 3 records and the form is sorted by client. If it matters, the form is built on a query
Client1 Data1 Data2 Data3
Client1 Data1 Data2 Data3
Client1 Data1 Data2 Data3
Client2 Data1 Data2 Data3
Client2 Data1 Data2 Data3
Client2 Data1 Data2 Data3
Client3 Data1 Data2 Data3
That is, I would like it to look like:
Client1 Data1 Data2 Data3
Data1 Data2 Data3
Data1 Data2 Data3
Client2 Data1 Data2 Data3
Data1 Data2 Data3
Data1 Data2 Data3
Client3 Data1 Data2 Data3
There are actually more fields involved both to be shown and not to be shown, but it does not change the concepts involved.
Finally, I would like to put a "blank line" beach time the client switches. I know how to put space between every record in a form, but not between groups of records/
I have tried using subforms (show the client name in the form, the data controls in the subform), but then cannot use continuous forms, meaning that I can then only have one client show per "page". I do not want the user to have to keep changing "pages" where only one client at a time can be seen. Using a subform in the footer seems to have the same consequence.