Find & replace

  • Thread starter Thread starter VN01
  • Start date Start date
Assumptions: Data is in column A, replacing "12" with "34"
=IF(ISNUMBER(FIND("12",A2)),REPLACE(A2,LEN(A2)-1,2,"34"),A2)

Copy down as needed. Then, if you want, copy and paste special-values only
to get static values.
 
Try this...

=SUBSTITUTE(A1,RIGHT(A1,2),$B$1) and pull down.

Where your list is in column A and the replacement number (or text) is in
B1.

HTH
Regards,
Howard
 
Back
Top