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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Syndicate_Admin
Administrator
Administrator

Count how many times a number is repeated in a table

Hello, good afternoon.

as I can count how many times a number is repeated in a table.

For example I have this table.

Dymension_0-1657929171731.png

In the RequestStatusId column, I want to get how many times the 6 is repeated

1 ACCEPTED SOLUTION
Syndicate_Admin
Administrator
Administrator

What did help me was this:

COUNTX(FILTER(DatActivosSolicitudes, RELATED(CatSolEstatus[SolicitudEstatusId])= 6), DatActivosSolicitudes[SolicitudEstatusId])
filtering and searching by number 6

View solution in original post

5 REPLIES 5
Syndicate_Admin
Administrator
Administrator

What did help me was this:

COUNTX(FILTER(DatActivosSolicitudes, RELATED(CatSolEstatus[SolicitudEstatusId])= 6), DatActivosSolicitudes[SolicitudEstatusId])
filtering and searching by number 6
Ashish_Mathur
Super User
Super User

Hi,

Drag that column to the Table visual and write this measure

Count = counta(Data[RequestStatusId])


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

I do not know if I gave myself to explain but it was to count how many times the number 6 is repeated in the column RequestEstatusId

My solution will do exactly that.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

But not all the data I have in that column is number 6

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors