Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
ajmonster
Helper II
Helper II

Calculate Outstanding Submissions

Hello

 

First, I'll show you a mock data set:

 

 

PersonMonth
John1
Jake1
Jill1
Jill2
John2
Jill4
Jake2
John3
John5
Jake3

 

I am looking for a way to sum how many missing records there are for a given month. For example, the correct measure would show me that January has 0, February has 0, March has 1, April has 2, and May has 2.

 

Thanks,

ajmonster

1 ACCEPTED SOLUTION

@ajmonster

 

To get the names of missing persons, you can use this MEASURE

 

MissingPerson =
CONCATENATEX (
    EXCEPT ( ALL ( TableName[Person] ), VALUES ( TableName[Person] ) ),
    TableName[Person],
    ", "
)

Regards
Zubair

Please try my custom visuals

View solution in original post

5 REPLIES 5
Zubair_Muhammad
Community Champion
Community Champion

@ajmonster

 

Try this MEASURE

 

Missing Records =
COUNTROWS ( ALL ( TableName[Person] ) ) - COUNT ( TableName[Person] )

Regards
Zubair

Please try my custom visuals

@Zubair_Muhammad Upon clicking on a given month with missing records, are you able to display the name of those with missing records?

@ajmonster

 

To get the names of missing persons, you can use this MEASURE

 

MissingPerson =
CONCATENATEX (
    EXCEPT ( ALL ( TableName[Person] ), VALUES ( TableName[Person] ) ),
    TableName[Person],
    ", "
)

Regards
Zubair

Please try my custom visuals

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.