Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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!!
Solved! Go to Solution.
Hi @Anonymous ,
Create two measures like this:
For counting total audits:
Audit Count = CALCULATE(COUNTX(Audit,COUNT(Audit[Employee ID])))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 😀
Hi @Anonymous ,
Create two measures like this:
For counting total audits:
Audit Count = CALCULATE(COUNTX(Audit,COUNT(Audit[Employee ID])))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 😀
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 😀
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 20 | |
| 10 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 33 | |
| 31 | |
| 19 | |
| 12 | |
| 11 |