' This may be a start: to enter data in columns 2-4,
' after column 4, this will go to next row, column 2.
' D-C Dave
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
If Target.Column = 5 Then
Cells(Target.Row + 1, 2).Select
End If
End Sub
>Hi All,
>
[quoted text clipped - 15 lines]
>Thanks,
>B
pixelpounder - 13 Nov 2007 03:39 GMT
> ' This may be a start: to enter data in columns 2-4,
> ' after column 4, this will go to next row, column 2.
[quoted text clipped - 27 lines]
> ----== Posted via Newsfeeds.Com - Unlimited-Unrestricted-Secure Usenet News==----http://www.newsfeeds.comThe #1 Newsgroup Service in the World! 120,000+ Newsgroups
> ----= East and West-Coast Server Farms - Total Privacy via Encryption =----
Thanks for the leg up Dave,
Now I just got to get it to work with variaibles. And you know what
mom always says,
eat your variables! :)
Thanks again,
B