Forum Discussion
steambucky
8 years agoHelper III
Replace 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
8 years agoResolver II
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
- Anonymous5 years agoNot applicable
Thank you! This worked perfectly for me.