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
mariogmgi2g
Frequent Visitor

How does filtering column by itself work?

Hi guys,

I have table with a column that look like this:

'A'[Dates] = [10/2/2021, 10/2/2021, 10/2/2021, 11/2/2021, 12/2/2021, 12/2/2021]

and I want to create a knew column to count hoy many times each date appear. 

 

I thought I could achieve that with the next sentence:
CALCULATE(COUNTROWS(FILTER('A', 'A'[Dates] = 'A'[Dates])))

So, each time the function will be evaluated in each row, count the number of rows that have the same date. This is not working and i would like to know why to understand more precisely this kind of DAX functions.

 

Thank you very much.

 

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@mariogmgi2g , a new column =

countx(filter('A', 'A'[Dates] = earlier('A'[Dates])),'A'[Dates] )

 

 

or a new measure
countx(filter(allselected('A'), 'A'[Dates] = max('A'[Dates])),'A'[Dates] )

View solution in original post

2 REPLIES 2
mariogmgi2g
Frequent Visitor

@amitchandak Thank you so much for the quick answer! It works perfectly

amitchandak
Super User
Super User

@mariogmgi2g , a new column =

countx(filter('A', 'A'[Dates] = earlier('A'[Dates])),'A'[Dates] )

 

 

or a new measure
countx(filter(allselected('A'), 'A'[Dates] = max('A'[Dates])),'A'[Dates] )

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.