Forum Discussion
Anonymous
2 years agoNot applicable
Update multiple strings in transformation
Good morning. I'm trying to replace multile string values in transformation. I can get them to work separately but not togther: = Table.ReplaceValue(#"Changed Type", each [Summary], each if Te...
- 2 years ago
Each step is referring to the same original table ("Changed Type"). Is that what you want?
They don't know about each other. If you want them to act consecutively, you'll have to change the 2nd step to refer to the first step
HotChilli
Community Champion
2 years agoEach step is referring to the same original table ("Changed Type"). Is that what you want?
They don't know about each other. If you want them to act consecutively, you'll have to change the 2nd step to refer to the first step
- Anonymous2 years agoNot applicable
That worked - thanks so much!