Reputation: 5
So basically just find and replace but some of my data is so messy
For example I wanna find the word "cat" and replace it with "mr.cat"
but there are some word like "redcat" that will show up in my search too
and If I use the match entire cell contents some word like "the cat" will not show
Upvotes: 0
Views: 3222
Reputation: 53
Add another column and include the following formula
=IF(EXACT(A5,"cat"),"mr.cat",SUBSTITUTE(A5," cat"," mr.cat"))
Upvotes: 0