Forum Discussion
damiancds
5 years agoFrequent Visitor
Refreshing dataflow error: It's adding M language
I have a simple calendar table dataflow (create a list of dates, add columns based on date). I'll admit I copied some code online and tweaked it for my requirements. Code: let FromYear = Date.Y...
- 5 years ago
So, in case anyone stumbles across this in the future:
I was an idiot. At the very end of the code, I had
#"Removed Columns" = Table.RemoveColumns(#"Renamed Columns3", {"FiscalBaseDate"})
in
SourceThis is what it needed to be (instead of in Source)
in
#"Removed Columns"
Once changed it refreshed with no errors.
damiancds
5 years agoFrequent Visitor
So, in case anyone stumbles across this in the future:
I was an idiot. At the very end of the code, I had
#"Removed Columns" = Table.RemoveColumns(#"Renamed Columns3", {"FiscalBaseDate"})
in
Source
This is what it needed to be (instead of in Source)
in
#"Removed Columns"
Once changed it refreshed with no errors.