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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
Donalson
Regular Visitor

Ayuda Countif

Estimados señores,

En Excel nosotros tenemos la formula countif, como usamos esta formula en la tabla de BI?

Me gustaria contar los valores repetidos en la tabla de forma ascendente de acuerdo a su ubicación: ej:

Countif (A$1:A2;A2), donde la columna "A" = "Nombre"

1 ACCEPTED SOLUTION
v-jingzhang
Community Support
Community Support

Hi @Donalson 

 

If you want an M solution, you can add a custom column with below code in Power Query Editor:

let _name = [Name] in List.Count(List.Select(#"Previous Step"[Name], each _ = _name))

vjingzhang_0-1650422878648.png

 

If you want a DAX solution, you can add a new column in Power BI Desktop

Column = CALCULATE(COUNT('Table'[Name]))

vjingzhang_1-1650423257530.png

Or

Column 2 = COUNTROWS(FILTER('Table','Table'[Name]=EARLIER('Table'[Name])))

vjingzhang_2-1650423388068.png

 

Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.

View solution in original post

2 REPLIES 2
v-jingzhang
Community Support
Community Support

Hi @Donalson 

 

If you want an M solution, you can add a custom column with below code in Power Query Editor:

let _name = [Name] in List.Count(List.Select(#"Previous Step"[Name], each _ = _name))

vjingzhang_0-1650422878648.png

 

If you want a DAX solution, you can add a new column in Power BI Desktop

Column = CALCULATE(COUNT('Table'[Name]))

vjingzhang_1-1650423257530.png

Or

Column 2 = COUNTROWS(FILTER('Table','Table'[Name]=EARLIER('Table'[Name])))

vjingzhang_2-1650423388068.png

 

Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.

Vijay_A_Verma
Most Valuable Professional
Most Valuable Professional

The equivalent formulas will have to be made through List functions. But we need to see your sample data and illustrated result from that sample data to give you a formula. 

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.