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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
cake28424
Frequent Visitor

Dynamic Count If Measure

Hi! I have been trying to create a dynamic count if measure but am struggling a lot to do this. Essentially, I want to count the number of active IDs (using dummy data to not share confidential data) within a department at a given time.

When I filter to a particular time period, say 2024, I want a measure to return the number of IDs within a department. So Marketing would return 1, Finance would return 1, HR would return 1, and Sales would return 2. This measure needs to be on a department basis so each ID row returns the active count of all active IDs within a department. I need to use a measure instead of a column so this metric works dynamically with the date filter I have set up (used a date table that accounts for contract start and end year). 

cake28424_0-1710187106903.png

Can someone help me figure out how to do this? Happy to provide any clarification.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @cake28424 ,

First of all, many thanks to @lbendlin  for your very quick and effective replies, and I will give some additions below:

1.Create the simple table.

vjiewumsft_0-1710379009956.png

2.Create the new measure to count.

 

Dynamic_Count_ID = 
VAR yea = 2024
RETURN
CALCULATE(
    COUNTROWS('Table'),
    FILTER(
        'Table',
        'Table'[Start year] <= yea &&
        'Table'[End year] >= yea
    )
)

 

3.Drag the department field and measure into the table visual.

vjiewumsft_1-1710379098122.png

4.The result is shown below.

vjiewumsft_3-1710379130030.png

 

Best Regards,

Wisdom Wu

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

 

 

 

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @cake28424 ,

First of all, many thanks to @lbendlin  for your very quick and effective replies, and I will give some additions below:

1.Create the simple table.

vjiewumsft_0-1710379009956.png

2.Create the new measure to count.

 

Dynamic_Count_ID = 
VAR yea = 2024
RETURN
CALCULATE(
    COUNTROWS('Table'),
    FILTER(
        'Table',
        'Table'[Start year] <= yea &&
        'Table'[End year] >= yea
    )
)

 

3.Drag the department field and measure into the table visual.

vjiewumsft_1-1710379098122.png

4.The result is shown below.

vjiewumsft_3-1710379130030.png

 

Best Regards,

Wisdom Wu

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

 

 

 

lbendlin
Super User
Super User

lbendlin_0-1710200356503.png

 

Hi @lbendlin  

Thanks for taking a look! I opened up your solution and saw that the customer IDs under the sales department are returning the individual count instead of the department count when the year is 2024. Would want both of these numbers to show 2 instead of 1 each to reflect the department size at the time of 2024.

cake28424_0-1710201628929.png

Do you know if this is possible/how I can achieve this?

Helpful resources

Announcements
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.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

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