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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Pandadev
Post Prodigy
Post Prodigy

Measure to check if result from one measure is contained within result from another measure

I have two measures that return country names based on max formulas , some of the returned values contain multiple countries , seperated by a comma. so my current measure i am using is not matching any data which has multiple countries as it would not be an exact match.

Example : 

Measure --  Op Country = United States

Measure --  Max Base = Mexcio,United States

so my measure :  

Measure -- Matched Country = If([Op Country]=[Max Base],"Yes","No") , only works if there is just one unique Max Base result
Is there a formula to say if Op Country exist within Max Base , then Yes
1 ACCEPTED SOLUTION

Hi , @Pandadev 

You can try function CONTAINSSTRING  :

 

Matched Country = IF(CONTAINSSTRING([M_maxbase],[M_op_country]),"Yes","No")

 

 The result will show as below:

80.png

 

By the way ,CONTAINSSTRING is not case-sensitive.

 

Best Regards,
Community Support Team _ Eason
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

3 REPLIES 3
Greg_Deckler
Community Champion
Community Champion

@Pandadev Yes, you could use FIND, SEARCH or even SUBSTITUTE



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

Thanks , could you please show me an example of how one of these formulas would look 

Hi , @Pandadev 

You can try function CONTAINSSTRING  :

 

Matched Country = IF(CONTAINSSTRING([M_maxbase],[M_op_country]),"Yes","No")

 

 The result will show as below:

80.png

 

By the way ,CONTAINSSTRING is not case-sensitive.

 

Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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