Hey all Frist time poster... But I have found the info of the board useful in more then once.
Here is my question:
I am tring to setup a sheet the when texted is entered into one cell then a static date is automattly ented in the cell below.
Below is the formula that I found on the borad and tried to modifty. but when i do it runs a cycle and repets the answer all down the column
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 1 Then
Intcolumn = Target.Column
introw = Target.Row
Cells(introw, Intcolumn + 1) = Now()
End If
End Sub
Anyone have any Ideas????
Thanks
Matthew
Here is my question:
I am tring to setup a sheet the when texted is entered into one cell then a static date is automattly ented in the cell below.
Below is the formula that I found on the borad and tried to modifty. but when i do it runs a cycle and repets the answer all down the column
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 1 Then
Intcolumn = Target.Column
introw = Target.Row
Cells(introw, Intcolumn + 1) = Now()
End If
End Sub
Anyone have any Ideas????
Thanks
Matthew