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

Join us at FabCon Vienna from September 15-18, 2025, for the ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM. Get registered

Reply
Thyagarajulu99
Frequent Visitor

Dataflow Gen 2 Error:MashupException.Error:Expression.Error: We cannot convert a value of type List

Hi Team,

I created the Dataflow Gen2, which connects to the Azure Synapse On-Demand Database Server and refreshes the Lakehouse Delta tables using existing views on the server.

 

However, the Dataflow Gen2 is failing with the following error for a table:

'There was a problem refreshing the dataflow: Couldn't refresh the entity because of an issue with the mashup document. MashupException.Error: Expression.Error: We cannot convert a value of type List to type Table. Details: Reason = Expression.Error; ErrorCode = 10276; Value = {[...], [...]}'. Error code: Mashup Exception Expression Error.

 

Kindly help me to understand this issue.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Thyagarajulu99 ,

 

The error message indicates that Dataflow Gen2 is trying to convert a List to a Table, which is an invalid operation. You can use the Table.FromList function to correctly convert a List to a Table.

let
    MyList = {1, 2, 3, 4, 5},
    MyTable = Table.FromList(MyList, Splitter.SplitByNothing(), null, null, ExtraValues.Error)
in
    MyTable

vkongfanfmsft_1-1736747002792.png

 

vkongfanfmsft_0-1736746992669.png

 

For more details, you can refer to below document:

Table.FromList - PowerQuery M | Microsoft Learn

 

Best Regards,
Adamk Kong

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @Thyagarajulu99 ,

 

The error message indicates that Dataflow Gen2 is trying to convert a List to a Table, which is an invalid operation. You can use the Table.FromList function to correctly convert a List to a Table.

let
    MyList = {1, 2, 3, 4, 5},
    MyTable = Table.FromList(MyList, Splitter.SplitByNothing(), null, null, ExtraValues.Error)
in
    MyTable

vkongfanfmsft_1-1736747002792.png

 

vkongfanfmsft_0-1736746992669.png

 

For more details, you can refer to below document:

Table.FromList - PowerQuery M | Microsoft Learn

 

Best Regards,
Adamk Kong

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June FBC25 Carousel

Fabric Monthly Update - June 2025

Check out the June 2025 Fabric update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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