Loop

  • Thread starter Thread starter JohnUK
  • Start date Start date
J

JohnUK

Hi, I need a code that can pick up a date from one cell
(B1)and drop it into the first empty cell under a list of
dates in Column H
Many thanks in advance
 
iFreeRow = Cells(Rows.Count,"H").End(xlUp).Row + 1
Cells(iFreeRow,"H").Value = Range("B1").Text

--

HTH

RP
(remove nothere from the email address if mailing direct)
 

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