This is probably another silly question, but I can't get DCOUNT to do this, perhaps I'm barking up the wrong command. Here's my problem:
in one table (named "data"), there are these fields, they're all numbers:
ID phone count
1 1111 0
2 1111 0
3 1112 0
4 1111 0
5 1110 0
The count is 0 for all rows. I need the count to be (from top to bottom) 3,3,1,3,1. That is, it counts the number of times "phone" occurs, and puts that number in the "count" field.
Thanks in advance,
Mikel