Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hello developers,
I'm in need of some DAX assistance.
I'm trying to create a dashboard that reflects Head Count. It's almost complete, but I need to reflect a starting head count for periods selected in my slicer. Or more logicaly explained, Head Count for the period prior to the one selected.
Head Count and Fiscal Period are in my Fact Table whilst Job Title is in my Dim table. The relationship between the two tables is linked by employee key and looks like this:
My fiscal periods are expressed with Fiscal Year first then the Fiscal Period. ex. 202301 = First Period in Fiscal Year 2023.
So far, the below DAX has been working out for me:
Starting HC =
CALCULATE(
SUM(FactEmployeeFiscal[Active]),
FILTER(ALL(FactEmployeeFiscal[FiscalPeriod]),FactEmployeeFiscal[FiscalPeriod]),
FactEmployeeFiscal[RowNum]=MAX(FactEmployeeFiscal[RowNum])+1)
RowNum or Row Number is an index for the Fiscal Period with the Max period = 1. Currently the highest Fiscal Period available is 202305.
202305 = 1; 202304 = 2; 202303 = 3 etc.
The trouble starts when I filter to only FY2023 and select the first Fiscal Period. My results go blank.
Starting Head Count needs to be the headcount for the period prior to the one being selected. In this case when I select 202301, my measure looks for the headcout to 202212. But FY22 is filtered out, so the column goes blank.
I've switched up my formula to update the ALL comand to this:
Do any of you geniouses out there know what I need to do to my DAX measure to accurately reflect HC for the first Fiscal Period in FY2023?
Thanks for any Help!!!
@tmendoza , You need to have a separate fiscal period table . You need the sortable continuous column for period
Period Rank = RANKX(all(Period),Period[year period],,ASC,Dense)// Use FY Period RANK
refer
Time Intelligence, DATESMTD, DATESQTD, DATESYTD, Week On Week, Week Till Date, Custom Period on Period,
Custom Period till date: https://youtu.be/aU2aKbnHuWs&t=145s
Hello @amitchandak , Thanks for the Reply!
You are pretty darn close, but it's not quite there. Although, looking at it, your DAX seems solid.
I added an additional period table and gave it a rank column. The Max period = 1. I also joined it to FactEmployeeFiscal by FiscalPeriod.
The Measure is as follows:
You are close, but the result reflects the starting headcount for the period selected rather than for the period prior. In the pic below, the starting HC should be 3,024.
I've changed your -1 to a +1 and tried -2 and +2, but the result remains the same.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 8 | |
| 8 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 23 | |
| 13 | |
| 10 | |
| 6 | |
| 5 |