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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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.

 

 


@ 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!:
The Definitive Guide to Power Query (M)

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.

 

 


@ 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!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors