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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
SebastianAlmer
Frequent Visitor

need help: want to find all items that are not in a list for a specific date

Dear all,

I'd kindly ask for your help, cause I really have no idea how to solve that.

 

I have two tables where I'd like to find all items for a specific date that are *not* in the table.

 

Personnel:

table1.png

 

Projects:

table 2.png

 

I want to have a list with all people *not* working on a specific date.

So one option would be to have a resulting list like this:

table3.png

 

or of course only the empty items (but this i can achive easy based on the last list):

DatePNR
02.01.2021  2
03.01.2021  2
03.01.2021  3

 

Any idea how to solve this and to get to the third combined list?

thanks in advance

 

regards

Sebastian

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@SebastianAlmer ,I am assuming both tables are join

use this measure  with first name , last name or any column with Personnel table

 

if(isblank(count(Project[project])),1,0)

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

3 REPLIES 3
SebastianAlmer
Frequent Visitor

Thanks @amitchandak 

One more question: How would i do that to antoher table where i have an inactive relationship? how could I add USERLATIONSHIP there?

@SebastianAlmer , yes create a measure with userelationship and check for blank for the complete measure with userelationship

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
amitchandak
Super User
Super User

@SebastianAlmer ,I am assuming both tables are join

use this measure  with first name , last name or any column with Personnel table

 

if(isblank(count(Project[project])),1,0)

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors