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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
smithD0
Frequent Visitor

Calculating Yearly Total with two different date columns

I'm trying to show a user population over time that takes into account the users not only being added to the total, but also subtracted as they leave the group.  I have used the bulit in quick measure to make this:

 

Count of userID running total in Year = 
CALCULATE(
	COUNTA('allUsers'[userID]),
	FILTER(
		ALLSELECTED('allUsers'[joined].[Year]),
		ISONORAFTER('allUsers'[joined].[Year], MAX('allUsers'[joined].[Year]), DESC)
     )
)

Is there a way to add an AND to the filter?  I am trying to make it so the filter would say that for each year in the equation, count those records that have a joined date before or on that year, and a leave date that is greater than that year.

 

Filter(allUsers,'allUsers'[joined].[Year] <= Year && 'allUsers'[removed].[Year] >= Year

 

Any idea on how this could work?

1 ACCEPTED SOLUTION
georgy
Frequent Visitor

Hi,

It seems like adding another FILTER() should help, and I think DAX allows you to have as many filter as you need (not 100% sure on this):

calculate(measure, FILTER(), FILTER()) and so on.

Cheers,

View solution in original post

1 REPLY 1
georgy
Frequent Visitor

Hi,

It seems like adding another FILTER() should help, and I think DAX allows you to have as many filter as you need (not 100% sure on this):

calculate(measure, FILTER(), FILTER()) and so on.

Cheers,

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.