I have a table with a unique assignment_id and unique client_id. Both ids appear multiple times in the table. One client_id can have multiple assignment_id. I want a list of clients that only have one assignment. The following measure works correctly but the total is missing. Does anyone know how to fix this? Enterprise DNA.pbix (428.5 KB)
New Clients =
VAR tbl =
SUMMARIZE(
‘Fact Table’,
‘Fact Table’[CDASSIGN_ID],‘Fact Table’[CLIENT_ID])