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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
camruny
New Member

Counting Strings with Wildcard

I have a table that has a list of URLs and I would like to create a count of all of the ones that end in .com, .org, .gov etc.  How can I write a formula that will do this?

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @camruny,

Adding to other post, you can simply create a measure using CALCULATE and COUNTROWS functions to create a count of all of the ones that end in .com, .org, .gov . Here is an example for your reference.


large.png

Thanks,
Lydia Zhang

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @camruny,

Adding to other post, you can simply create a measure using CALCULATE and COUNTROWS functions to create a count of all of the ones that end in .com, .org, .gov . Here is an example for your reference.


large.png

Thanks,
Lydia Zhang

Thank you!  This is exactly what I was looking for!

KGrice
Memorable Member
Memorable Member

If you use the SEARCH function, you can take advantage of wildcards. Since the criteria is static, I'd probably make a new column in the data view that determines if the ending of the url matches your pattern. For example:

 

SEARCH.PNG

 

 

You can then use that column in your measures to get a count of urls that match. If you multiply the whole column formula above by 1, you'll end up with 1s for True and 0s for False, making any math you do on the column easier and more intuitive. Then you can use:

 

MatchCount = SUM(Table1[Matches])

 

 

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors