Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
I don't really know how I should lable my question, but I have the following DAX Measure to give me Current Employees for any Point In Time basically. This one works great, but now I need to filter to also include people that are considered Sr. Management which consists of Executive Team, Sr Vice President, Vice President.
Current Employees =
CALCULATE (
COUNTX (
FILTER (
Roster,
Roster[Hire Date] <= MAX ( 'Calendar'[Date] )
&& (
ISBLANK ( Roster[Termination Date] )
|| Roster[Termination Date] > MAX ( 'Calendar'[Date] )
)
),
( Roster[Employee Id] )
),
CROSSFILTER ( Roster[Hire Date], 'Calendar'[Date], NONE )
)
I can get a the following DAX Measure to work, but I think having a Measure like the one above would be better, but don't know how to create it.
C_SrMgmt =
CALCULATE ( COUNTROWS ( Roster ), Roster[Management Level] IN { "Vice President", "Sr Vice President", "Executive Team" })
I can get one Table for All Sr Mgmt (includes Males& Females), Female Sr Mgmt, and where I'm struggling is having one Table to include this count vs having multiple tables. I'm not sure how I need to build my Measure to capture this.
Hi, @apeeltyler
Are you able to provide some of the source data for testing? All the fields involved in the formula are needed.
Sensitive information can be removed in advance. What kind of expected results do you expect? You can also show it with pictures.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I was able to come up with this. Does anyone have a better method for writing this?
SrMgmt_Female =
CALCULATE (
COUNTX (
FILTER (
Roster,
Roster[Hire Date] <= MAX ( 'Calendar'[Date] )
&& (
ISBLANK ( Roster[Termination Date] )
|| Roster[Termination Date] > MAX ( 'Calendar'[Date] )
)
&& ( Roster[Management Level]
IN { "Vice President", "Sr Vice President", "Executive Team" } )
&& Roster[Gender] = "Female"
),
( Roster[Employee Id] )
),
CROSSFILTER ( Roster[Hire Date], 'Calendar'[Date], NONE )
)
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
121 | |
87 | |
78 | |
62 | |
58 |
User | Count |
---|---|
129 | |
114 | |
97 | |
72 | |
71 |