Forum Discussion
KCinMelbourne
Resolver I
7 years agoReplace Value in Whole Table
Hi guys, I've had issue in the past where Project Online data pulls in with 'non printable characters'. It's a pain because it appears as a space but when you try to (for example) merge the 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"))
sckienle
Advocate II
7 years agoYou 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"))
philipblondewwt
7 years agoNew Member
This solution works and resolves replacing values in columns that can have changing names.