Hi everybody !
I have a access 2003 DB with one table, for ex. which contains the info about the users and their PCs like this:
|id| name | PC1 | PC2 | PC3 |
|1 | Jack |Asus |Lenovo| HP |
|2 | John |DELL| | |
|3 | Anna | | Asus | |
I have a query which show this information in this way:
| name | PC |
| Jack | Asus |
| Jack |Lenovo|
| Jack | HP |
|John | DELL |
|Anna | Asus |
and respectively we can create a report which will show this info in this way.
But how to add a field in this report which will show the number of the records which the name's not repeat, like this:
|Nr| name | PC |
| 1 | Jack | Asus |
| | Jack |Lenovo|
| | Jack | HP |
| 2 |John | DELL |
| 3 |Anna | Asus |
???
Please help me !!!