Forum Discussion
Ben-Dev
4 years agoHelper II
Hard to Catch Error
Hello, Could someone on the Microsoft side confirm what’s going on in a certain hard to catch error scenario? For both of the below examples: Query Editor display an error message (“Expression...
- 4 years ago
Simply referencing the value apparently doesn't raise an error. But enumerating the rows does.
What happens if you do this?
try Table.Buffer(Data)
This should force the enumeration of the rows.
EDIT: Note that there may be other less-expensive ways to initiate enumeration. Buffering is just the first thing that came to mind.
Ehren
4 years agoMicrosoft Employee
Simply referencing the value apparently doesn't raise an error. But enumerating the rows does.
What happens if you do this?
try Table.Buffer(Data)
This should force the enumeration of the rows.
EDIT: Note that there may be other less-expensive ways to initiate enumeration. Buffering is just the first thing that came to mind.