Thread: date column
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
jamie85[_12_] jamie85[_12_] is offline
external usenet poster
 
Posts: 1
Default date column

Great thanks i have edited the code to suit as follows:

Private Sub Worksheet_Change(ByVal Target As Range)
On Error GoTo ErrHandler:
If Target.Count 1 Then Exit Sub
If Target.Column < 11 Then
Application.EnableEvents = False
Cells(Target.Row, 11).Value = Now
Cells(Target.Row, 11).NumberFormat = "mm/dd/yy hh:mm"
Columns(11).AutoFit
End If
ErrHandler:
Application.EnableEvents = True
End Sub

What would i have to change so the code would only apply to cells K2
K30 ? Thank

--
Message posted from http://www.ExcelForum.com