cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
KaiRado
Frequent Visitor

Power Query Text.StartsWith() range of values

Hi, 

 

I would like to filter my data in the TableName table by the following condition: select data where column Code starts with V[2-9] OR M[2-9] OR contains ("MS" OR "PO"). That means that I want data where Code contains "MS" or "PO" or starts with: V2, V3, V4, M2, M3, M4, M5, and so on. 

I wrote the following:

Table.SelectRows(TableName,
each List.Contains({"MS", "PO"}, [Code]) or Text.StartsWith([Code]),....)

)

But I don't know how to finish it, so I get the result I want.

 

Do you gyus have any ideas?

Thank you very much in advance!

1 ACCEPTED SOLUTION

Hi @KaiRado ,

 

Not super nice, but this one maybe?

= Table.SelectRows ( Source, each
    ( Text.Contains ( [Code], "MS" ) ) or 
    ( Text.Contains ( [Code], "PO" ) ) or 
    ( ( Text.StartsWith ( [Code], "V" ) or Text.StartsWith ( [Code], "M" ) ) 
    and List.Contains( {"2","3","4","5","6","7","8","9"},Text.At([Code] , 1 ) ) )
)

 

/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

4 REPLIES 4
tackytechtom
Super User
Super User

Hi @KaiRado ,

 

Before:

tomfox_0-1662572331625.png

 

 

After:

tomfox_1-1662572356532.png

 

 

The code:

= Table.SelectRows ( Tablename, each 
    ( Text.Contains ( [Code], "MS" ) ) or 
    ( Text.Contains ( [Code], "PO" ) ) or 
    ( ( Text.StartsWith ( [Code], "V" ) or Text.StartsWith ( [Code], "M" ) ) and Number.FromText ( Text.At ( [Code] , 1 ) ) >= 2 ) 
) 

 

Let me know if this fixes your issue 🙂

 

/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Hi @tackytechtom !

 

Thank you very much for your solution. It partly worked. The thing is that I'm receiving an error: "We couldn't convert to Number...". I think the problem is that some values of the Code column on the second position contain letters or spaces (for example "MY" or "M J"). 

 

Thank you for your time!

Hi @KaiRado ,

 

Not super nice, but this one maybe?

= Table.SelectRows ( Source, each
    ( Text.Contains ( [Code], "MS" ) ) or 
    ( Text.Contains ( [Code], "PO" ) ) or 
    ( ( Text.StartsWith ( [Code], "V" ) or Text.StartsWith ( [Code], "M" ) ) 
    and List.Contains( {"2","3","4","5","6","7","8","9"},Text.At([Code] , 1 ) ) )
)

 

/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Hi @tackytechtom ,

 

that worked! Thank you very much!

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

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

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.