Hi,
I have a table1 with the following fields: Recipient, Sender, & Comment.
Recipient Sender Comment EmployeeA EmployeeB Nice job EmployeeA! EmployeeB EmployeeC Way to go!
Recipient and Sender are duplicate employee name fields. I want to create a query that summarizes how many comments the "Sender" has sent and how many comments the "Recipient" has recieved.
So my query would be something like this:
Recipient & Sender combined into one field (NAME).
Count of Total Comments sent from "Sender" (SENT)
Count of Total Comments recieved by "Recipient" (RCVD)
NAME RCVD SENT EmployeeA 1 EmployeeB 1 1 EmplyeeC 1
Thanks for your help! K-