Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
Requesting assistance calculating the number of indivduals who are actually employed vs the number who are authorized for employment for each company. Table 1 is those actually employed. Table 2 are positions that are authorized. Results is what I'm looking to achieve. Please help. Thanks. I appreciate your assistance.
Solved! Go to Solution.
@trina46844 Do you have a company table that sits over 'Table 1' and 'Table 2' and joins them together?
If not you can create one by creating a new table with a DAX formula like this.
Companies =
DISTINCT (
UNION (
DISTINCT ( 'Table 1'[Fill Company] ),
DISTINCT ( 'Table 2'[Fill Company] )
)
)
You would join that into your data tables then your result would be something like
RESULT =
DIVIDE ( COUNTROWS ( 'Table 1' ), SUM ( 'Table 2'[Auth Count] ) )
Hi,
Share the source data from where those 2 tables have been built.
Hi,
Share the source data from where those 2 tables have been built.
@trina46844 Do you have a company table that sits over 'Table 1' and 'Table 2' and joins them together?
If not you can create one by creating a new table with a DAX formula like this.
Companies =
DISTINCT (
UNION (
DISTINCT ( 'Table 1'[Fill Company] ),
DISTINCT ( 'Table 2'[Fill Company] )
)
)
You would join that into your data tables then your result would be something like
RESULT =
DIVIDE ( COUNTROWS ( 'Table 1' ), SUM ( 'Table 2'[Auth Count] ) )
Thanks for your help. This worked.
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 22 | |
| 21 | |
| 20 | |
| 19 | |
| 13 |
| User | Count |
|---|---|
| 58 | |
| 52 | |
| 37 | |
| 31 | |
| 27 |