Forum Discussion
AnishaSinghal
Microsoft Employee
5 years agoExpression.Error: Evaluation resulted in a stack overflow and cannot continue.
I am getting stack overflow error when trying to append 3 tables in Power BI. Two of the tables are coming from SQL server and one is from Kusto. The SQl server tables are appending correctly but the...
- 5 years ago
Hi AnishaSinghal ,
There is a known issue about appending data from Kusto into power bi and seems has been fixed based on my search(ICM: 219724212).
From the information collected by PG, the best workaround for this is probably to call Table.AddIndexColumn on the Kusto data before using Table.Combine.
The main advantage of Table.AddIndexColumn is that it can be used by someone through the UI without any typing.
Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
AnishaSinghal
Microsoft Employee
5 years agoThanks a lot for your response v-yingjl . Adding the index column also helped in appending the tables faster. This was very helpful.