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
Hi AZ38 -
How can I apply this same formula in the POWER QUERY EDITOR?
In my specific case, it would be better to do this there, by addin a Custom column.\
Pls, let me know.
Thank you. RA
az38
6 years agoCommunity Champion
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
- Anonymous6 years agoNot applicable
SUPER!!!