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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Adi98
Frequent Visitor

Extract value from column which consist of list

The column employeeList contains of id, name, department etc. 

Adi98_1-1651653667286.png

The Column Modified by is similar to employeeList but here I can expand the list to indivdual rows.

Adi98_2-1651653795848.png

 How can I convert employeeList to invidual rows?

 

1 ACCEPTED SOLUTION
v-easonf-msft
Community Support
Community Support

Hi, @Adi98 

If the column contains elements of mixed types which may result in missing expand column arrows,

you need to determine the data type of each row in the table and then convert it.

veasonfmsft_0-1652164883513.png

Table.TransformColumns(Source, {{"Column1", each if Value.Is(_, type list) then _ else {_} }} )

Please refer to below threads for more details.

How to expand a column that cannot be expanded in Power BI and Power Query in Excel 

Cannot expand the list values in side the column 

If each column has a list as a value, try adding the custom column below to extract the value.

try [ListColumn]{0} otherwise null

Please refer to below thread for more details.

Expanding List Type in Power BI 

 

Best Regards,
Community Support Team _ Eason

View solution in original post

2 REPLIES 2
v-easonf-msft
Community Support
Community Support

Hi, @Adi98 

If the column contains elements of mixed types which may result in missing expand column arrows,

you need to determine the data type of each row in the table and then convert it.

veasonfmsft_0-1652164883513.png

Table.TransformColumns(Source, {{"Column1", each if Value.Is(_, type list) then _ else {_} }} )

Please refer to below threads for more details.

How to expand a column that cannot be expanded in Power BI and Power Query in Excel 

Cannot expand the list values in side the column 

If each column has a list as a value, try adding the custom column below to extract the value.

try [ListColumn]{0} otherwise null

Please refer to below thread for more details.

Expanding List Type in Power BI 

 

Best Regards,
Community Support Team _ Eason

amitchandak
Super User
Super User

@Adi98 , the first option is showing that? will that not work ?

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors