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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount 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.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors