Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello,
I've been trying to search this and figure it out but I can't seem to find the correct answer. I have two tables.
(1) A list of Department
(2) A table of all of our budgeted hire and open requisitions by department
I need a count of Total Budget to Hire by department, as well as Total Open Requisition.
How do I accomplish this using a measure instead of a calculated column? The output I need is below
Thank you in advance!
Solved! Go to Solution.
EDIT: Sorry, the Total Open Requisition for Project/Program Management is 7, not 6.
HI @egrospe17,
You can try to use following measure formulas if they suitable for your requirement:
Total Budget =
VAR list =
VALUES ( Department[Department] )
RETURN
CALCULATE (
SUM ( Table1[Budgeted Positions] ),
FILTER ( ALLSELECTED ( Table1 ), [Department] IN list && [Req Type] = "Budget" )
)
Total Open Requisition =
VAR list =
VALUES ( Department[Department] )
RETURN
CALCULATE (
SUM ( Table1[Number of Open Positions] ),
FILTER (
ALLSELECTED ( Table1 ),
[Department]
IN list
&& [Req Type] = "Open Requisition"
)
)
Regards,
Xiaoxin Sheng
EDIT: Sorry, the Total Open Requisition for Project/Program Management is 7, not 6.
HI @egrospe17,
You can try to use following measure formulas if they suitable for your requirement:
Total Budget =
VAR list =
VALUES ( Department[Department] )
RETURN
CALCULATE (
SUM ( Table1[Budgeted Positions] ),
FILTER ( ALLSELECTED ( Table1 ), [Department] IN list && [Req Type] = "Budget" )
)
Total Open Requisition =
VAR list =
VALUES ( Department[Department] )
RETURN
CALCULATE (
SUM ( Table1[Number of Open Positions] ),
FILTER (
ALLSELECTED ( Table1 ),
[Department]
IN list
&& [Req Type] = "Open Requisition"
)
)
Regards,
Xiaoxin Sheng
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 7 | |
| 6 | |
| 5 | |
| 5 |
| User | Count |
|---|---|
| 24 | |
| 11 | |
| 9 | |
| 9 | |
| 8 |