Forum Discussion
StoryofData
3 years agoHelper III
Column 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
3 years agoSuper User
Hi,
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")