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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Anonymous
Not applicable

count of staff not Audited

Hi!

 

I have 2 tables Employee and Audits

Relationship one to many from Emp to Audits

 

I wanted to count the Employees that are not yet audited.

I was able to achieve this by using a calculated column in Employee that returns true when Emp is not on audits table i used lookup value and count from there.

 

Is there a way to do this just by using measure and not using calculated columns?

 

Thanks in advance!!

1 ACCEPTED SOLUTION
jaideepnema
Solution Sage
Solution Sage

Hi @Anonymous ,

Create two measures like this:

 

For counting total audits:

Audit Count = CALCULATE(COUNTX(Audit,COUNT(Audit[Employee ID])))
 
For counting staff not audited:
Staff Not Audited = CALCULATE(COUNTX(FILTER(Employee,ISBLANK([Audit Count])),COUNT(Employee[Employee ID])))

 

Please accept this as a solution if your question has been answered !!

Appreciate a Kudos 😀

View solution in original post

3 REPLIES 3
jaideepnema
Solution Sage
Solution Sage

Hi @Anonymous ,

Create two measures like this:

 

For counting total audits:

Audit Count = CALCULATE(COUNTX(Audit,COUNT(Audit[Employee ID])))
 
For counting staff not audited:
Staff Not Audited = CALCULATE(COUNTX(FILTER(Employee,ISBLANK([Audit Count])),COUNT(Employee[Employee ID])))

 

Please accept this as a solution if your question has been answered !!

Appreciate a Kudos 😀

Anonymous
Not applicable

HI @jaideepnema 

 

Yeah it worked!

 

Thank you!

i have a follow up question tho. 
is it still needed to wrap them with Calculate?
i tried without calculate and they both still worked.

ya ya... you can also create these measures without calculate also 😀

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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

Top Solution Authors