Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hello,
I'm trying to create a measure that will show how many people are "available" in the current month.
As an example, here's a data from 2 (!) people: Jessia (who can fullfill 2 roles) and Sandy:
Name | Role | Available from month |
Jessica | Accountant | 10 |
Jessica | Financial Controller | 10 |
Sandy | Financial Controller | 11 |
As result I need to see that we have 1 person available in October, but 2 people available in November (since Jessica has become available previously, and is still available).
Somehow adding SUM and DISTINCTCOUNT doesn't work... and then there are the months... suggestions?
Solved! Go to Solution.
@Olia Please try using below expression as "New Column"
TotalAvailable = VAR CurrMonth = CALCULATE(DISTINCTCOUNT(RoleAvailable[Name]),FILTER(ALL(RoleAvailable),RoleAvailable[Month]=EARLIER(RoleAvailable[Month]))) VAR PrevMonth = CALCULATE(DISTINCTCOUNT(RoleAvailable[Name]),FILTER(ALL(RoleAvailable),RoleAvailable[Month]=EARLIER(RoleAvailable[Month])-1)) RETURN CurrMonth + PrevMonth
Proud to be a PBI Community Champion
@Olia Please try using below expression as "New Column"
TotalAvailable = VAR CurrMonth = CALCULATE(DISTINCTCOUNT(RoleAvailable[Name]),FILTER(ALL(RoleAvailable),RoleAvailable[Month]=EARLIER(RoleAvailable[Month]))) VAR PrevMonth = CALCULATE(DISTINCTCOUNT(RoleAvailable[Name]),FILTER(ALL(RoleAvailable),RoleAvailable[Month]=EARLIER(RoleAvailable[Month])-1)) RETURN CurrMonth + PrevMonth
Proud to be a PBI Community Champion
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
87 | |
81 | |
53 | |
38 | |
35 |