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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.