I received data that has a field called "group number" and a field called subs - the rows look like this:
groupnumber subs
01-12345 2
00-12345 1
85-11111 6
01-11111 4
00-12121 1
00-12888 2
I want to get rid of the first 3 digits (in other words the 01-, 00-, 85-, etc)
I was able to run an update query using the right function to trim off the first three. My question now is in regards to totalling the subs and getting rid of the duplicats -
Using the sample data my new table would be:
groupnumber subs
12345 3
11111 10
12121 1
12888 2
Any help would be greatly appreciated!!!!
Fred
groupnumber subs
01-12345 2
00-12345 1
85-11111 6
01-11111 4
00-12121 1
00-12888 2
I want to get rid of the first 3 digits (in other words the 01-, 00-, 85-, etc)
I was able to run an update query using the right function to trim off the first three. My question now is in regards to totalling the subs and getting rid of the duplicats -
Using the sample data my new table would be:
groupnumber subs
12345 3
11111 10
12121 1
12888 2
Any help would be greatly appreciated!!!!
Fred