Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register 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
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
19 | |
14 | |
14 | |
11 | |
8 |