Forum Discussion
Anonymous
6 years agoNot applicable
How to replace several values in a column for a single value (POWER BI QUERY)
Hi, I have more than 500 different values in a column and I need to replace all of them for a single value in a new column. How can I do that easily? Is there such a function as replace all values e...
- 6 years ago
hi Anonymous
try calculated column
Column = IF( isBlank('Table'[Field]);blank();"YourNewValue") )do not hesitate to give a kudo to useful posts and mark solutions as solution
- 6 years ago
hi Anonymous
it should work
= if [Column1] = null then null else "YourValue"do not hesitate to give a kudo to useful posts and mark solutions as solution
Anonymous
6 years agoNot applicable
Follow the following. Remember you need to add several entries then the system makes a rule and follows the rule.