Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Richard,
Try this. Use the Tab to move to the next cell after inputting for each of the 6 cells. On the 6th one hit ENTER and you will get a "carriage return" to the next row below and to the left below the cell where you started. If you are dead set to use a macro, something like this may get you going. Private Sub Worksheet_Change(ByVal Target As Range) If ActiveCell.Column 6 Then ActiveCell.Offset(1, -6).Select End If End Sub HTH Regards, Howard "Richard" wrote in message ... I need a macro that allows me to type informaton in 6 cells to the right then go back down to the next row and start inputting all over again |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Simple macro | Excel Discussion (Misc queries) | |||
Simple Macro | Excel Worksheet Functions | |||
Simple Macro | Excel Discussion (Misc queries) | |||
Simple macro help | Excel Discussion (Misc queries) | |||
Simple macro - help please!! | Excel Programming |