Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Is it possible to run Find and Replace from a macro where it picks up the 'find' and the 'replace' data from the data in two cells on the sheet? Any ideas? Thanks -- Brisbane Rob ------------------------------------------------------------------------ Brisbane Rob's Profile: http://www.excelforum.com/member.php...o&userid=25096 View this thread: http://www.excelforum.com/showthread...hreadid=495314 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Record a macro while doing it manually.
Then edit the macro. What:=Range("whatever you wanted to replace") becomes What:=Range("a1") similar for the value to replace it with -- Kind regards, Niek Otten "Brisbane Rob" wrote in message news:Brisbane.Rob.20epay_1135196101.7246@excelforu m-nospam.com... Is it possible to run Find and Replace from a macro where it picks up the 'find' and the 'replace' data from the data in two cells on the sheet? Any ideas? Thanks -- Brisbane Rob ------------------------------------------------------------------------ Brisbane Rob's Profile: http://www.excelforum.com/member.php...o&userid=25096 View this thread: http://www.excelforum.com/showthread...hreadid=495314 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
something like this
Sub findreplace() Range("e14:e18").Replace What:="x", Replacement:="y", LookAt:=xlWhole Range("e16:e18").Replace What:=[e14], Replacement:=[e15], LookAt:=xlWhole End Sub -- Don Guillett SalesAid Software "Brisbane Rob" wrote in message news:Brisbane.Rob.20epay_1135196101.7246@excelforu m-nospam.com... Is it possible to run Find and Replace from a macro where it picks up the 'find' and the 'replace' data from the data in two cells on the sheet? Any ideas? Thanks -- Brisbane Rob ------------------------------------------------------------------------ Brisbane Rob's Profile: http://www.excelforum.com/member.php...o&userid=25096 View this thread: http://www.excelforum.com/showthread...hreadid=495314 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Thanks, Neik, your help much appreciated -- Brisbane Rob ------------------------------------------------------------------------ Brisbane Rob's Profile: http://www.excelforum.com/member.php...o&userid=25096 View this thread: http://www.excelforum.com/showthread...hreadid=495314 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Thanks Don! Much appreciated -- Brisbane Rob ------------------------------------------------------------------------ Brisbane Rob's Profile: http://www.excelforum.com/member.php...o&userid=25096 View this thread: http://www.excelforum.com/showthread...hreadid=495314 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I find and replace the " | Excel Discussion (Misc queries) | |||
Find and Replace | Excel Worksheet Functions | |||
Find and Replace | Excel Discussion (Misc queries) | |||
Find and replace of word causes change of font formatting | New Users to Excel | |||
VB Find and Replace | Excel Worksheet Functions |