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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
msimmonsmcse
Helper I
Helper I

Return people with missing time entries

I have two tables : Active Members and Time Entries. They are related by MemberID. When a member puts time in their card, a row is created in the dataset for that day. I would like to get a measure that returns a list of members that are in the Active Member Table, but have no time entry rows in the Time Entry table for the filtered date in the report. Thanks!

 

Active Member

Member ID
Member1
Member2
Member3

 

Time Entry

DateMemberIDHours
4/21/2020Member18
4/21/2020Member28
4/22/2020Member18
4/22/2020Member38

 

If the above data is what I am filtering, I should get a result returned of:

Measure

MemberIDDate
Member34/21/2020
Member24/22/2020

 

Thanks for the assist!

1 ACCEPTED SOLUTION
Greg_Deckler
Community Champion
Community Champion

Well, you can't return a table from a measure. So perhaps a matrix visual with something along the lines of:

 

Measure = IF(ISBLANK(COUNTROWS('Time Entry')),"Missing",BLANK())
 
See attached PBIX.

 

 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
camargos88
Community Champion
Community Champion

Hi @msimmonsmcse ,

 

Check this file:  Download PBIX 

 

I've created a line for those member without hours.

 

If you consider it as a solution, please mark as a solution and kudos.

Ricardo



Did I answer your question? Mark my post as a solution!

Proud to be a Super User!



Greg_Deckler
Community Champion
Community Champion

Well, you can't return a table from a measure. So perhaps a matrix visual with something along the lines of:

 

Measure = IF(ISBLANK(COUNTROWS('Time Entry')),"Missing",BLANK())
 
See attached PBIX.

 

 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.