I have two tables, one lists "UserID" and other lists "TechMgrID," "CustServiceRepID," and "PMMgrID"
I have a third table that lists "CreatedByUserID," which I also created a relationship to "UserID"
I need to calculate how many "Notes" were created by the CustServiceRep, the TechMgr, and the PMMgr.
I tried
COL Notes = CALCULATE(COUNTA('dpmgr tblContactNotes'[Note]), 'dpmgr tblContactNotes'[IsSystem] = 0, 'dpmgr tblContactNotes'[IsAuto]= 0, USERELATIONSHIP('dpmgr tblContacts'[CustServiceRepID], 'dpmgr vwJMWebUsersSystemALL'[UserID]))
and changed the formula accordingly, but I don't think I'm getting the result I need. I need the count of how many notes were entered by each role