Find a value in one cell and Replace in another cell

G

Guest

Is there a way to Find a value in one cell and Replace in another cell? I
want to find a value in a column and replace a value in another column on the
same row.

Is this possible?

Mike
 
B

Bob Phillips

Set cell = Columns(1).Find("somevalue")
cell.value = Cells(cell.Row,"J").Value

will replace it with the contents of column J.

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top