Putting correct values in cells

  • Thread starter Thread starter Nick
  • Start date Start date
N

Nick

I have a document that has 2 worksheets. i want to pull
information from one to the other e.g. i want to pull the
first record that has "cdt" as a reference into a
specific cell on the read worksheet. If cdt is not in the
information worksheet then no record will be shown

Thanks

Nick
 
set rng = somerangeonsheet1.find("cdt")
if not rng is nothing then
rng.entirerow.copy Destination:= _
somespecificrangeinsheet2incolumnA
End if
 

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

Back
Top