Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Olia
Helper III
Helper III

Sum of available people in a certain month

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:

 

NameRoleAvailable from month
JessicaAccountant10
JessicaFinancial Controller10
SandyFinancial Controller11

 

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? 

1 ACCEPTED SOLUTION
PattemManohar
Community Champion
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

image.png





Did I answer your question? Mark my post as a solution!

Proud to be a PBI Community Champion




View solution in original post

2 REPLIES 2
PattemManohar
Community Champion
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

image.png





Did I answer your question? Mark my post as a solution!

Proud to be a PBI Community Champion




thank you @PattemManohar!

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.