View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Dave D-C[_3_] Dave D-C[_3_] is offline
external usenet poster
 
Posts: 176
Default Is this even possible with VBA?

' 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

pixelpounder wrote:
Hi All,

I have a spreadsheet that requires user input
in rows for various criteria and produces a report based on that
information.
The first cell in column D (D8) contains a value that I would like to
use to allow information to be entered in that row.

Example D8=6
Data can be entered in the next 6 cells in that row, after the 6th
data is entered the cell focus is automatically changed to D9 and the
process starts all over again for row 9.
the cell value of D9 is used to allow the cell data to be entered
until that value is reached then back to the next row D10.

Any help you can give would be greatly appreciated!

Thanks,
B



----== Posted via Newsfeeds.Com - Unlimited-Unrestricted-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! 120,000+ Newsgroups
----= East and West-Coast Server Farms - Total Privacy via Encryption =----