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
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
Put your data visualization and design skills to the test! This exciting challenge is happening now through May 31st!
At the monthly call, connect with other leaders and find out how community makes your experience even better.
User | Count |
---|---|
400 | |
105 | |
68 | |
55 | |
49 |
User | Count |
---|---|
379 | |
118 | |
82 | |
67 | |
54 |