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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
Super User
Super User

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

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

@ 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!:
The Definitive Guide to Power Query (M)

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.

Greg_Deckler
Super User
Super User

@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. 


@ 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!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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