Forum Discussion
Expression.Error: We cannot convert a value of type Table to type List.
- 2 years ago
Thanks Pete. Appear to have solved the issue. It was due to the data in People columns being pulled in as nested tables. Have added a couple of steps to expand the nested tables into seperate cokumns and it seems to have done the trick, can now see the data as needed in the report.
Thanks again for looking into this one.
Thanks Pete, this is really helpful for my understanding.
I have now updated the Expanded User Multi step as follows:
ExpandedUserMulti = Table.TransformColumns(UserMultiChanges, { {"Dependency Owner (Accountable)", each null} }, MissingField.UseNull),
From what you said I'm assuming I'm missing an operation in there? (Have just focused on one of the columns for now for sake of simplicity).
I am now getting this error, the opposite of before:
Expression.Error: We cannot convert a value of type List to type Table.
Details:
Value=[List]
Type=[Type]
Thanks again for your help!
Try taking out the ", MissingField.UseNull" argument at the end.
Pete