This query
let
List = {1..20},
Result = List.Split(List, 4)
in Result
fails with The name 'List.Split' wasn't recognized. Make sure it's spelled correctly.
List.Split is a valid built-in function and I can only guess that it is not recognized because of the outdated SDK.
- New functions, like
List.Split, above.
- The language has evolved a little over time (e.g. the
?? coalesce operator).
- The signatures of certain functions have changed. For example:
Table.Skip no longer requires a second parameter (it now defaults to skipping one row).
Table.AddColumn can now take 5 rather than 4 parameters
Such inconsistencies make what should be simple lift & shift of code from Power BI to PQnet a very difficult exercise.
I understand there was a reason to freeze the version but that was several years ago, so can you please update PQnet's SDK compatibility?
This query
fails with
The name 'List.Split' wasn't recognized. Make sure it's spelled correctly.List.Split is a valid built-in function and I can only guess that it is not recognized because of the outdated SDK.
List.Split, above.??coalesce operator).Table.Skipno longer requires a second parameter (it now defaults to skipping one row).Table.AddColumncan now take 5 rather than 4 parametersSuch inconsistencies make what should be simple lift & shift of code from Power BI to PQnet a very difficult exercise.
I understand there was a reason to freeze the version but that was several years ago, so can you please update PQnet's SDK compatibility?