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

Try your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now

Reply
nareshr89
Helper II
Helper II

Headcount Calculation

I need help with a scenario with the headcount, where the numbers given under Opening is picked as is at monthly level but when its quarterly level we need to maintain the Jan data as Opening and Closing headcount to be last month of the period.

 

Ex - Q1 -> Opening will be of Jan and Closing numbers will be of Mar.

 

Below is the DAX used by me which sums up when selecting Q1, instead i need the above logic to work. Sample excel file attached.

 

F_OpeningHC =

var yr = SELECTEDVALUE(Dim_time[Year])
var ml = SELECTEDVALUE(Dim_time[MonthLoad])

Return
CALCULATE(SUM(sf_CSS[hc_opening]),sf_CSS[sf_year]=yr,sf_CSS[sf_month_load]=ml)

 

Looking for the help to build this logic. @tamerj1

2 ACCEPTED SOLUTIONS
tamerj1
Community Champion
Community Champion

Hi @nareshr89 

Apologies for the late reply. I was out of office all day. 
Please try by replacing SELECTEDVALUE ( Dim_time[MonthLoad] ) with MIN ( Dim_time[MonthLoad] ) for Opening HC and MAX ( Dim_time[MonthLoad] ) for Closing HC

View solution in original post

nareshr89
Helper II
Helper II

Thanks for reverting @tamerj1.

Found the solution using similar logic for the YearMonth ID.

 

F_OpeningHC =
var yr = SELECTEDVALUE(Dim_time[Year])
var ml = SELECTEDVALUE(Dim_time[MonthLoad])
VAR yearmonth = CALCULATE(MIN(sf_CSS[time_id]),sf_CSS[sf_year]=yr,sf_CSS[sf_month_load]=ml)

 

Return
CALCULATE(SUM(sf_CSS[hc_opening]),sf_CSS[sf_year]=yr,sf_CSS[sf_month_load]=ml,sf_CSS[time_id]= yearmonth)

 

 

F_ClosingHC =

var yr = SELECTEDVALUE(Dim_time[Year])
var ml = SELECTEDVALUE(Dim_time[MonthLoad])
VAR yearmonth = CALCULATE(MAX(sf_CSS[time_id]),sf_CSS[sf_year]=yr,sf_CSS[sf_month_load]=ml)

Return
CALCULATE(SUM(sf_CSS[hc_closing]),sf_CSS[sf_year]=yr,sf_CSS[sf_month_load]=ml,sf_CSS[time_id]=yearmonth)

View solution in original post

2 REPLIES 2
nareshr89
Helper II
Helper II

Thanks for reverting @tamerj1.

Found the solution using similar logic for the YearMonth ID.

 

F_OpeningHC =
var yr = SELECTEDVALUE(Dim_time[Year])
var ml = SELECTEDVALUE(Dim_time[MonthLoad])
VAR yearmonth = CALCULATE(MIN(sf_CSS[time_id]),sf_CSS[sf_year]=yr,sf_CSS[sf_month_load]=ml)

 

Return
CALCULATE(SUM(sf_CSS[hc_opening]),sf_CSS[sf_year]=yr,sf_CSS[sf_month_load]=ml,sf_CSS[time_id]= yearmonth)

 

 

F_ClosingHC =

var yr = SELECTEDVALUE(Dim_time[Year])
var ml = SELECTEDVALUE(Dim_time[MonthLoad])
VAR yearmonth = CALCULATE(MAX(sf_CSS[time_id]),sf_CSS[sf_year]=yr,sf_CSS[sf_month_load]=ml)

Return
CALCULATE(SUM(sf_CSS[hc_closing]),sf_CSS[sf_year]=yr,sf_CSS[sf_month_load]=ml,sf_CSS[time_id]=yearmonth)

tamerj1
Community Champion
Community Champion

Hi @nareshr89 

Apologies for the late reply. I was out of office all day. 
Please try by replacing SELECTEDVALUE ( Dim_time[MonthLoad] ) with MIN ( Dim_time[MonthLoad] ) for Opening HC and MAX ( Dim_time[MonthLoad] ) for Closing HC

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.