I'm using DBMan to search and display (only) a fairly simple database file (exported from an Access database) that tracks dump usage by citizen. Each citizen has a permit number that is used to track what categories of stuff the leave at the dump. There are multiple records for each citizen (one per category). So the database looks like this:
permit #|citizen name|category|amount
00234|Fred Smith|Metal|2 yards
00234|Fred Smith|Glass|1 yard
00234|fred Smith|Paper|4 yards
So if Fred searches the database to see how much he's dumped, he gets three records:
Permit: 00234
Citizen: Fred Smith
Caregory: Metal
Amount: 2 yards
Permit: 00234
Citizen: Fred Smith
Caregory: Glass
Amount: 1 yard
Permit: 00234
Citizen: Fred Smith
Caregory: Paper
Amount: 4 yards
We'd like the results to appear as:
Permit: 00234
Citizen: Fred Smith
Category: Metal
Amount: 2 yards
Category: Glass
Amount: 1 yard
Category: Paper
Amount: 4 yards
Short of redesigning the original Access database to put all of this data into a single record, is there anything I can do to achieve the above result?
Thanks,
John
permit #|citizen name|category|amount
00234|Fred Smith|Metal|2 yards
00234|Fred Smith|Glass|1 yard
00234|fred Smith|Paper|4 yards
So if Fred searches the database to see how much he's dumped, he gets three records:
Permit: 00234
Citizen: Fred Smith
Caregory: Metal
Amount: 2 yards
Permit: 00234
Citizen: Fred Smith
Caregory: Glass
Amount: 1 yard
Permit: 00234
Citizen: Fred Smith
Caregory: Paper
Amount: 4 yards
We'd like the results to appear as:
Permit: 00234
Citizen: Fred Smith
Category: Metal
Amount: 2 yards
Category: Glass
Amount: 1 yard
Category: Paper
Amount: 4 yards
Short of redesigning the original Access database to put all of this data into a single record, is there anything I can do to achieve the above result?
Thanks,
John

