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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Anonymous
Not applicable

Calculate No response

Dear all,

I want to extract list of employees who dont fill out the response form.

Available data:

1. I have list of total employees.

2. Response from employees who fill on daily basis.

Issue:

Some employees dont fill out response form daily. So, employees who dont fill the form need to be listed in power BI.

Who makes entries via form can be easily extracted, but who dont make entries on response on daily basis couldnt be extracted.

 

Please help to achieve it

6 REPLIES 6
az38
Community Champion
Community Champion

Hi @Anonymous 

First, make sure you have relationships between tables

Second, add a measure into Employee table

Measure = 
var _maxDays = CALCULATE(DISTINCTCOUNT(ResponseTable[Date]), ALL(ResponseTable))
RETURN
IF(DISTINCTCOUNT(ResponseTable[Date]) < _maxDays, FALSE(), TRUE())

Third, filter by FALSE() value of new Measure - it will match your demand 


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn
harshnathani
Community Champion
Community Champion

Hi @Anonymous ,

 

If you have the list of ALL Employees in one table.

 

And responses from form comes in the form a a different table..

 

You can use the merge option in Power Query to find the list of employees who have not responded.

 

1.jpg

 

 

Regards,
Harsh Nathani

Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)

Anonymous
Not applicable

Hii... Thanks!! I tried this, but its showing whole people who doesnt fill.

I am looking for who didnt fill response by each day... I have time stamp in response sheet. Any solution pls?

 

TIA

Hi @Anonymous ,

 

Can you pls share sample data and how does your data model look like.

 

Regards,

Harsh Nathani

Anonymous
Not applicable

@harshnathani @az38 @amitchandak Please support

 

Hi...

Below are table 1 Rsponse table and table 2 is employee database. I want to pull out name of employees who didnt fill the response sheet daily.

 

So, I need daywise employee name who filed to fill. 

If I filter for 22nd in merged sheet, I want Name "P" in non filled and M on 21st.table.jpg

 

 

amitchandak
Super User
Super User

@Anonymous , you can add +0 to the measure and get all the employees

 

Total Customer = Count(Table[emp])+0

Or you can use this option

ShowItemwithoutdata.JPG

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
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

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
Top Kudoed Authors