text offset

  • Thread starter Thread starter NDBC
  • Start date Start date
N

NDBC

I have some code that searches for the first available cell from the bottom
in column a and saves data. I have some data that I would like saved in the
adjacent cell in column b. I can do the same search from the bottom in column
b but is there a more efficient/easier way.
 
Try the below (from yesterdays post). Time will be insserted in ColB of every
adjacent cell..

Private Sub TextBox1_KeyDown(ByVal KeyCode As MSForms.ReturnInteger, ByVal
Shift As Integer)
If KeyCode = 13 Then
lngRow = Sheets("Sheet1").Cells(Rows.Count, "A").End(xlUp).Row + 1
Sheets("Sheet1").Range("A" & lngRow) = TextBox1.Text
Sheets("Sheet1").Range("B" & lngRow) = Now()
TextBox1.Text = ""
End If
End Sub

If this post helps click Yes
 

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