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
Anonymous
Not applicable

Search for exact string in column

I want to search for exact string in a column and then get a particular value.

 

Formula i use:

asb Rev new = if(CONTAINSSTRING([segment],"asb"),[asb Rev],blank())

But There are values in segment like asb, asb TSS, asb NIV.

 

Now the values are populating against asb as well as against asb TSS, asb NIV.
Is there a way to search only for exact letters in segment column ??
 
I want to search in such a way that when i write asb in formula ,it searches for only asb not for asb TSS or asb NIV.
 
let me know how can i work this situation in DAX
Help!!
1 ACCEPTED SOLUTION
v-lionel-msft
Community Support
Community Support

Hi @Anonymous ,

 

v-lionel-msft_0-1599618896125.png

v-lionel-msft_1-1599619281527.png

 

As tested, @Greg_Deckler 's solution can help you.

 

Best regards,
Lionel Chen

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
v-lionel-msft
Community Support
Community Support

Hi @Anonymous ,

 

v-lionel-msft_0-1599618896125.png

v-lionel-msft_1-1599619281527.png

 

As tested, @Greg_Deckler 's solution can help you.

 

Best regards,
Lionel Chen

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Greg_Deckler
Community Champion
Community Champion

@Anonymous - Oh, yeah, here is another way:

asb Rev new = if([segment]="asb"),[asb Rev],blank())


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

@Anonymous , I think it should solve with the solution by @Greg_Deckler already provided.

if not you need to provide data.

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Greg_Deckler
Community Champion
Community Champion

@Anonymous Maybe:

asb Rev new = if(FIND([segment],"asb",,0)>0 && LEN([segment])=3),[asb Rev],blank())

Probably a better way, I'll look. In the mean time, if you could post sample data I could mock this up. Not really enough information to go on, please first check if your issue is a common issue listed here: https://community.powerbi.com/t5/Community-Blog/Before-You-Post-Read-This/ba-p/1116882

Also, please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490

The most important parts are:
1. Sample data as text, use the table tool in the editing bar
2. Expected output from sample data
3. Explanation in words of how to get from 1. to 2. 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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