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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
rowingblazers
New Member

Filtering from Power Query - (with clear example)

Hello,

I have a column with a list of data that I want to organize by certain cities.

So what I have right now is something similar to

NY59V9
NJ47W3
SF111A3

339TX

94CT28

As you can see my dataset is a mix of number/random alphabets+ two state abbrevation. 
I would like to only extract those Abbreviation and create a new column but I just can't really figure out how. 

NY

NJ

SF

TX

CT

Can anyone give me some advice?
Please let me know if you have any question. 

Best,
KP

1 ACCEPTED SOLUTION
Vijay_A_Verma
Most Valuable Professional
Most Valuable Professional

Use following formula in a custom column. Replace Data with your column name.

=Text.Start(Text.Select([Data], {"A".."Z"}),2)

 

 

View solution in original post

1 REPLY 1
Vijay_A_Verma
Most Valuable Professional
Most Valuable Professional

Use following formula in a custom column. Replace Data with your column name.

=Text.Start(Text.Select([Data], {"A".."Z"}),2)

 

 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

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