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

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
MarcioLeal89
Advocate I
Advocate I

Does ID starts with any value from list from column in the same table

Hi all,

 

I need to verify if each row on column "ID" starts with any value from a list from the column "ID starts with" in the same table.

 

This list will be different for each "Group ID".

 

I am trying the following but gives an error (Expression.Error: We cannot convert a value of type List to type Text.)

List.AnyTrue( List.Transform({Text.SplitAny([ID Starts With], ",")}, (substring) => Text.Contains([ID], substring)))

 

I have to do this on the Power Query editor.

Example:

 

"Group ID"      "ID"                      "ID Starts with"         "Result expected"

A                     TRP123                TRP, PT                          Yes

A                     RUN123               TRP, PT                          No

B                      OL123                 RUN                              No

C                      PT123                 TR, RUN                        No

C                      TR123                 TR, RUN                        Yes

D                     ABC123               ABC , RUN, PT, TR        Yes

 

Appreciated for your help.

1 ACCEPTED SOLUTION
wdx223_Daniel
Community Champion
Community Champion

NewStep=Table.AddColumn(PreviousStepName,"Result Expected",each List.Contains(Text.Split([ID Starts with],","),[ID],(x,y)=>Text.StartsWith(y,x)))

View solution in original post

2 REPLIES 2
wdx223_Daniel
Community Champion
Community Champion

NewStep=Table.AddColumn(PreviousStepName,"Result Expected",each List.Contains(Text.Split([ID Starts with],","),[ID],(x,y)=>Text.StartsWith(y,x)))

Anonymous
Not applicable

This approach worked for me too, thanks for posting.

 

Can you explain the last part of the step? The "[ID],(x,y)=>Text.StartsWith(y,x)))" part? I've never seen the => in a step, and i dont understand why the x,y before the => switches to y,x (flips order). I assume the x, y are variables?

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.