excel - Remove exact text in Cell A if it exists in Cell B -


i have 2 excel columns:

first column

1. dog 2. gorilla 3. lion

second column

1. dog; monkey; fish 2. insect; cobra 3. lion; cat

what want removing duplicate column 2, if in column must removed:

1. monkey; fish 2. insect; cobra 3. cat

who can me?

try this:

=substitute(trim(substitute(substitute($b1,$a1,""),";",""))," ","; ") 

Comments

Popular posts from this blog

html - Difficulties with background-image property -

visual studio code - What does the isShellCommand property actually do and how should you use it? -

ios - Segue not passing data between ViewControllers -