Thread: text offset
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Jacob Skaria Jacob Skaria is offline
external usenet poster
 
Posts: 8,520
Default text offset

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
---------------
Jacob Skaria


"NDBC" wrote:

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.