Forum Discussion
steambucky
Helper III
8 years agoReplace all different values except one
I have a column of data Cat Dog Mouse ANIMAL UNKNOWN ANIMAL UNKNOWN ANIMAL UNKNOWN I want to replace everything except ANIMAL UNKNOWN TYPE with ANIMAL TYPE KNOWN. I have far more tha...
- 8 years ago
Hi steambucky,
You can use below dax formula to solve your problem.
Resived Name = if(Animals[Name]<>"ANIMAL UNKNOWN","ANIMAL TYPE KNOWN",Animals[Name])
Thanks,
Rahul
RahulYadav
Resolver II
8 years agoHi steambucky,
You can use below dax formula to solve your problem.
Resived Name = if(Animals[Name]<>"ANIMAL UNKNOWN","ANIMAL TYPE KNOWN",Animals[Name])
Thanks,
Rahul
Anonymous
5 years agoNot applicable
Thank you! This worked perfectly for me.