T
Tim
Is there a way to count only one instance of a record? So
If I have the same ID 3 times in the same table I want a
count of one and a sum of 3.
Data looks like this;
Name Contact ID
John 35434
John 35434
John 35434
Mary 55555
Group by query
Name Contact ID SUM Contact
John 1 3
Mary 1 1
Thanks!
If I have the same ID 3 times in the same table I want a
count of one and a sum of 3.
Data looks like this;
Name Contact ID
John 35434
John 35434
John 35434
Mary 55555
Group by query
Name Contact ID SUM Contact
John 1 3
Mary 1 1
Thanks!