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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
srkase
Helper IV
Helper IV

COUNT OF REPEATED VALUES

Hi all,

 

I have a data like this.

CustomerNameMobilePincodeAreaTalukCityStateCountry
AmbArish6360302377562104PeresandraChik BallapurChikkaballapurKarnatakaIndia
Shreyas enterprises6360339767560040Vijayanagar (Bangalore)Bangalore NorthBangaloreKarnatakaIndia
Shreyas enterprises6360339767560040Vijayanagar (Bangalore)Bangalore NorthBangaloreKarnatakaIndia
Gotham6360432337572216Nagasandra-gubbiGubbiTumkurKarnatakaIndia
RAJA NAIK6360700489577204Marketyard APMC-ShimogaShimogaShimogaKarnatakaIndia
bheerappa h jogi6360777275587115BhagavatiBagalkotBagalkotKarnatakaIndia
R S ENGINEERING WORKS6361096519577401SagarSagarShimogaKarnatakaIndia
R.S ENGINEERING WORKS6361096519577401SagarSagarShimogaKarnatakaIndia
m b hallur6361400636587111KirsurBagalkotBagalkotKarnatakaIndia
        
I NEED THE FOLLOWING RESULT      
        
TOTAL CUSTOMERS9 ( BASED ON MOBILE COUNT)    
REPEATED CUSTOMERS2( BASED ON MOBILE COUNT)    

 

I need to calculate the repeated customers based on mobile numbers.  If one or more time a mobile number is repeated, i need the count as 1 only.  

 

Thanks in advance.

 

Regards

SRK

 

1 ACCEPTED SOLUTION
ryan_mayu
Super User
Super User

@srkase 

pls try this

total customers = COUNTROWS('Table')

repeated customers = 
VAR tbl=SUMMARIZE('Table','Table'[Mobile],"No.",COUNTROWS('Table'))
return countrows(FILTER(tbl,[No.]>1))

1.PNG





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

1 REPLY 1
ryan_mayu
Super User
Super User

@srkase 

pls try this

total customers = COUNTROWS('Table')

repeated customers = 
VAR tbl=SUMMARIZE('Table','Table'[Mobile],"No.",COUNTROWS('Table'))
return countrows(FILTER(tbl,[No.]>1))

1.PNG





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
March PBI video - carousel

Power BI Monthly Update - March 2025

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

March2025 Carousel

Fabric Community Update - March 2025

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

Top Solution Authors
Top Kudoed Authors