Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
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.
Solved! Go to Solution.
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
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.
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
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.
Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.