Forum Discussion
Dom33
9 years agoRegular Visitor
Managing Errors in M-Language Query (Advanced Editor)
HI, Input data are in a json file like that: { "lastname":{ "columns_found":2, "columns":[ { "location":"['Table1'].['DESCRIPTION']", ...
- 9 years ago
Replace the first null in #"Converted to Table" by 1:
#"Converted to Table" = Table.FromList(columns, Splitter.SplitByNothing(), 1, null, ExtraValues.Error),
This will force the table to be created with 1 column.
MarcelBeug
9 years agoCommunity Champion
Replace the first null in #"Converted to Table" by 1:
#"Converted to Table" = Table.FromList(columns, Splitter.SplitByNothing(), 1, null, ExtraValues.Error),
This will force the table to be created with 1 column.
- Dom339 years agoRegular Visitor
Hi Marcelbeug,
It's work fine, thanks a lot ! :smileyhappy: