Replace specific text in cells (unique in each cell) with text in the column to the right?

JackBTM

New Member
Joined
Apr 6, 2021
Messages
8
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
Hi,

Long shot - but I have a sheet with around 700 rows.

In column A, there is paragraphs of text in each one. Inside these, there is various links ending in .jpg, .png etc - however I'm specifically looking to replace the .gif ones with the new .webp ones I have in column B.

I have done a VLOOKUP for the cells to the right, and they're in the correct order - I just need a way of replacing the URLs ending in .gif with the .webp ones.

Anyone able to help please? Would be hugely appreciated! Example below of how the cells look with column A and B.



Thanks
Jack
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Try this in C1:
Excel Formula:
=IF(COUNTIF(A1,"*http*.gif*"),SUBSTITUTE(MID(A1,FIND("""",A1)+1,(FIND(".gif",A1)+4)-(FIND("""",A1)+1)),".gif",".webp"),SUBSTITUTE(MID(B1,FIND("""",B1)+1,(FIND(".gif",B1)+4)-(FIND("""",B1)+1)),".gif",".webp"))
 
Upvote 0

Forum statistics

Threads
1,215,731
Messages
6,126,537
Members
449,316
Latest member
sravya

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top