Forum Discussion
StoryofData
Helper III
3 years agoColumn counting blank values
Issues with this dax as a column: Sanctions All (Participant Closed) = IF('Table'[IemRoleInCase] = "Subject", COMBINEVALUES ("-", [CaseNumber], [EmplId], [ParticipantName])) My column ap...
Ashish_Mathur
Super User
3 years agoHi,
Here's my suggestion:
- Create a calculated column formula as follows
Combine = Table[CaseNumber]&"-"&Table[EmplId]&"-"&Table[ParticipantName]
- Write this measure
Count = calculate(distinctcount(Table[Combine]),Table[IemRoleInCase]="Subject")