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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
sheetals
Helper I
Helper I

get an element from list by index after split in Mquery

Hi all,

 I have performed split operation in mquery and it returns result as list I want to obtain the  second element from list in a column How can I aceive that in Mquery?

 

Below is the Mquery and screenshot attached of my query

#"Added Custom" = Table.AddColumn(#"Changed Type Generation", "Custom", each Text.Split([extraction],"T"))

 

list.PNG

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Yeah... apart from the fact that the formula will return an error when there is no second element. To avoid this and have null returned instead, you have to use this syntax:

Text.Split([extraction],"T"){1}?

 

View solution in original post

5 REPLIES 5
sheetals
Helper I
Helper I

Got The solution

 

Text.Split([extraction],"T"){1}

Anonymous
Not applicable

Yeah... apart from the fact that the formula will return an error when there is no second element. To avoid this and have null returned instead, you have to use this syntax:

Text.Split([extraction],"T"){1}?

 

It shows this error

Expression.Error: We cannot convert the value null to type Text.
Details:
Value=
Type=[Type]

 

 

I have few null values in column [extraction] hence its showing this error. How can I avoid this with mquery?

Anonymous
Not applicable

Use IF.

Any other way rather then if else?

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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