Forum Discussion
twilbour
Helper I
5 years agoError: We cannot convert a value of type Table to type List
I have a multi file, multi sheet query. Once I have all the data combined, I want to duplicate certain rows from the data set, and append back to the list.. I have managed to create the table of du...
- 5 years ago
Your Table.Combine syntax is wrong. It requires a list of tables, not just the table names. Change it to:
#"Append Query" = Table.Combine({#"Filtered Rows2",#"Removed Columns2"})Note the {} brackets.