Forum Discussion
Anonymous
3 years agoNot applicable
New columns from data source are missing in dataflow
I have a dataflow that's using OData feed as a data source. The data source was updated with a new column so I refreshed my dataflow expecting to see this new column, but it did not show up. Edit...
- 3 years ago
It can be as simple as the difference between Table.SelectColumns() and Table.RemoveColumns()
Check your Power Query code for any transforms that may filter columns.
lbendlin
Super User
3 years agoIt can be as simple as the difference between Table.SelectColumns() and Table.RemoveColumns()
Check your Power Query code for any transforms that may filter columns.
- Anonymous3 years agoNot applicable
It looks like this was it. I had a step that removes columns of
type table, type record, type list, type nullable binary, type binary, type functionbut the missing column was not one of those types and still showed up in the editor after this step was applied.
I'm still not fully understanding why this solved the issue but the issue is now fixed, thank you.