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
HenryJS
Post Prodigy
Post Prodigy

Column: Count of Previous Column

Hi all,

 

How can I add a column which has a count of the 'Candidate + Date' column?

 

So for the bottom highlighted rows it would be 5 as they appear 5 times.

 

Capture.PNG

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@HenryJS , a new column like

countx(filter(table, [candidate+date] =earlier([candidate+date])),[candidate+date])

View solution in original post

3 REPLIES 3
FrankAT
Community Champion
Community Champion

Hi @HenryJS 

you can do it like this:

 

25-08-_2020_12-35-44.png

 

Count of Candidate + Date = 
CALCULATE(
    COUNT('Table'[Candidate + Date]),
    ALLEXCEPT('Table','Table'[Candidate + Date])
)

Regards FrankAT

AllisonKennedy
Super User
Super User

Sorry, I don't understand what you're asking. A couple of questions:
1) Why does this need to be a column? What is the end goal and can it be done as measure?
2) Why is the answer 5? Do you want to count the total rows with the same value in the Candidate-Date column?

Try new column:
Rows = COUNTROWS(FILTER(ALL(table), table[Candidate-Date] = EARLIER(table[Candidate-Date]))

Please @mention me in your reply if you want a response.

Copying DAX from this post? Click here for a hack to quickly replace it with your own table names

Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com

amitchandak
Super User
Super User

@HenryJS , a new column like

countx(filter(table, [candidate+date] =earlier([candidate+date])),[candidate+date])

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.