Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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 than 3 types of animals - actually about 100. There loads of examples for getting rid of specific text but i can't find anything that gets rid of everything BUT a specific thing. If you can help, the less coding or DAX stuff, the better. I am but a humble noob.
Thanks in advance.
Solved! Go to Solution.
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
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
Thank you! This worked perfectly for me.
User | Count |
---|---|
66 | |
60 | |
47 | |
33 | |
32 |
User | Count |
---|---|
86 | |
75 | |
56 | |
50 | |
45 |