CommentCalls.Code contains codes that are equal but case sensitive. I have linked this table to another table to show description as the original file has none. The problem that I have is that it pulls not only the description for the lower case codes but also for those equal to it in upper case. Can you help?
Thanks,
Kirsten.
SELECT Commentcalls.Code, Commentcalls.ClientID, Count(Commentcalls.Code) AS CountOfCode, ConsumerCodes2.Field2
FROM Commentcalls INNER JOIN ConsumerCodes2 ON Commentcalls.Code = ConsumerCodes2.Codes
GROUP BY Commentcalls.Code, Commentcalls.ClientID, ConsumerCodes2.Field2;
Thanks,
Kirsten.
SELECT Commentcalls.Code, Commentcalls.ClientID, Count(Commentcalls.Code) AS CountOfCode, ConsumerCodes2.Field2
FROM Commentcalls INNER JOIN ConsumerCodes2 ON Commentcalls.Code = ConsumerCodes2.Codes
GROUP BY Commentcalls.Code, Commentcalls.ClientID, ConsumerCodes2.Field2;