Forum Discussion
Replace Value in Whole Table
- 7 years ago
You can do this by using the Table.ColumnNames function in replacement of the specific column list. E.G. Table.ReplaceValue(#"Last Step",null,"-",Replacer.ReplaceValue,Table.ColumnNames(#"Last Step"))
You can do this by using the Table.ColumnNames function in replacement of the specific column list. E.G. Table.ReplaceValue(#"Last Step",null,"-",Replacer.ReplaceValue,Table.ColumnNames(#"Last Step"))
- philipblondewwt7 years agoNew Member
This solution works and resolves replacing values in columns that can have changing names.
- Anonymous6 years agoNot applicable
Excellent re whole table thanks!
- Anonymous3 years agoNot applicable
Champion! Thanks.
- HelpWanted3 years agoRegular Visitor
This is great!
Is it possible to only apply this to columns of type text? I have date and currency columns I would need to bypass.
- sckienle3 years ago
Advocate II
You should be able to use the Table.ColumnsOfType function in place of the Table.Column to limit the list returned to only columns of a specific type.
- kaitlyndunn1 year agoRegular Visitor
this was EXACTLY what i needed - thank you so much