Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How do I do a find and replace the 2 numbers at the end of the field in a
column? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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. -- Best Regards, Luke M *Remember to click "yes" if this post helped you!* "VN01" wrote: How do I do a find and replace the 2 numbers at the end of the field in a column? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 "VN01" wrote in message ... How do I do a find and replace the 2 numbers at the end of the field in a column? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Find & Replace: find part cell, replace whole cell | Excel Worksheet Functions | |||
Find and Replace - Replace with Blank Space | Excel Discussion (Misc queries) | |||
where to put results of find operation in find and replace functio | Excel Worksheet Functions | |||
find and replace - replace data in rows to separated by commas | Excel Worksheet Functions | |||
find replace cursor default to find box | Excel Discussion (Misc queries) |