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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

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
Super User
Super User

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!:
Power BI Cookbook Third Edition (Color)

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
Super User
Super User

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!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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