I have a report which shows two columns - staff number and visit date. For a staff number (which is unique) there may be more than one visit date. But I want to list a staff number only once and not multiple times in the column (but want all the visit dates of course). How can I do that?
how to avoid duplicate column values in access reports?
Collapse
X
-
Thanks ADezii,
I had to struggle along by creating a new temporary table just for sifting to avoid duplicates. It is little things like these that make things lot easier.
Can you answer one more question?
I want to count the number of records in each group and display it in a third field. How can I do that?Comment
-
Let's assume you have a Group Level on a Field named [Staff#]. To Count the Number of Records for each Grouping Level of [Staff#]:- Create a Group Footer for [Staff#].
- Create an Unbound Text Box in the [Staff#] Group Footer.
- Set the Control Source Property of this Text Box to =Sum([Staff#]).
Comment
Comment