Forum Discussion
Ben-Dev
Helper II
4 years agoTable.Combine Dies With Stack Overflow
Hello Microsoft Team, I've stumbled across a stack overflow error which rears its ugly head if I try to Table.Combine two tables which are both based on Table.View. 😞 Any idea what's going o...
AlexisOlson
Super User
4 years agoI don't know if this helps whatever your ultimate goal is but you can avoid the error by buffering Table to memory.
That is, replace
Table = GetView([])
with
Table = Table.Buffer(GetView([]))- Ben-Dev4 years ago
Helper II
Hi AlexisOlson, thanks!
Unfortunatley, since buffering blocks subsiquent folding and the real-life Table.View handles more complex folding than is shown in the example, I'm not sure I can realistically use buffering.