View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Kevin Beckham Kevin Beckham is offline
external usenet poster
 
Posts: 78
Default find & replace help

Jason,

Dim findCell As Range

Set findCell = Range("A1")
On Error Resume Next
Do While Not IsEmpty(findCell)
Columns("C").Replace findCell, findCell.Offset(0,
1), xlWhole
Set findCell = findCell.Offset(1, 0)
Loop
On Error GoTo 0
Set findCell = Nothing


The On Error statement takes care of the cases of when
there are no matches.

Kevin Beckham


-----Original Message-----

How can I find cell A1 (all instances) in column C and

replace them with
cell B1, then automatically find cell A2 (in all

instances) and replace
them with cell B2, and so on until columns A and B are

used up? I have
tried the macro, but this gets me no where. Please help!

Thanks,
Jason


------------------------------------------------
~~ Message posted from http://www.ExcelTip.com/
~~View and post usenet messages directly from

http://www.ExcelForum.com/

.