I have an Access database with about 2,000 records. Each record is made up of 1 text field and 2 numeric fields.
position|male|female|
--------|----|------|
clerk | 1 | 0
clerk | 0 | 1
cook | 0 | 1
Each name field may be repeated several times, which is ok.
I need to be able to loop through the table, for each like name field,total the like numeric values and put the result into a new table with just one occurance of the name with the total of the numeric values.
Any suggestions ?
Thanks.
position|male|female|
--------|----|------|
clerk | 1 | 0
clerk | 0 | 1
cook | 0 | 1
Each name field may be repeated several times, which is ok.
I need to be able to loop through the table, for each like name field,total the like numeric values and put the result into a new table with just one occurance of the name with the total of the numeric values.
Any suggestions ?
Thanks.