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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
mouzzampk
Helper I
Helper I

Yes or No based on Numbers before or after Specific Letter

Hi,

 

This is my table  Book1.xlsx

 

Value

ABC1234
BAC5678
123X756
222D897
ADC1234
ADX4325

 

But how can I show if there are three numbers before or after X or D then say Yes otherwise No.

 

Value            Comment

ABC1234No
BAC5678No
123X756Yes
222D897Yes
ADC1234No
ADX4325

No

1 ACCEPTED SOLUTION
dufoq3
Super User
Super User

Hi @mouzzampk,

 

Result:

dufoq3_0-1714066847012.png

[ a = Text.SplitAny([Value], "XD"),
  b = List.AnyTrue(List.Transform(a, (x)=> try Number.From(x) is number and Text.Length(x) = 3 otherwise false)),
  c = if b = true then "Yes" else "No"
][c]

 


Note: Check this link to learn how to use my query.
Check this link if you don't know how to provide sample data.

View solution in original post

5 REPLIES 5
dufoq3
Super User
Super User

Hi @mouzzampk,

 

Result:

dufoq3_0-1714066847012.png

[ a = Text.SplitAny([Value], "XD"),
  b = List.AnyTrue(List.Transform(a, (x)=> try Number.From(x) is number and Text.Length(x) = 3 otherwise false)),
  c = if b = true then "Yes" else "No"
][c]

 


Note: Check this link to learn how to use my query.
Check this link if you don't know how to provide sample data.

This is awesome, thank you. Some next level stuff 🙂

If you want to check how every part of record works - remove this [c] at the end and expand the record

dufoq3_0-1714068347777.png


Note: Check this link to learn how to use my query.
Check this link if you don't know how to provide sample data.

You are great, thank you. This is extremely helpful.

You're welcome 😉


Note: Check this link to learn how to use my query.
Check this link if you don't know how to provide sample data.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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