Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
What I am trying to do is set up a cell where I can type in a name, and then
have that name collect under an appropriate field on another worksheet. Then when I type in a different name, into the same cell, it collects that name UNDER the first name on the other worksheet. |
#2
![]() |
|||
|
|||
![]()
Would require event code behind the worksheet.
Private Sub Worksheet_Change(ByVal Target As Excel.Range) On Error GoTo stoppit Application.EnableEvents = False If Target.Address = "$A$1" And Target.Value < "" Then Sheets("Sheet2").Cells(Rows.Count, 2).End(xlUp) _ .Offset(1, 0).Value = Target.Value End If stoppit: Application.EnableEvents = True End Sub Right-click on the sheet tab and "View Code". Paste the above code into that sheet module. When you enter a name in A1 that name will be copied to Sheet2 B2 then next time you type a name in A1 that name will be copied to Sheet2 B3 and on and on. Adjust to suit your fields and columns. Gord Dibben Excel MVP On Tue, 14 Jun 2005 12:04:04 -0700, "mdjennings" wrote: What I am trying to do is set up a cell where I can type in a name, and then have that name collect under an appropriate field on another worksheet. Then when I type in a different name, into the same cell, it collects that name UNDER the first name on the other worksheet. |
#3
![]() |
|||
|
|||
![]()
This isn't quite the same thing, but you may want to try Data|Form.
You can always sort by the names later if that's a problem. mdjennings wrote: What I am trying to do is set up a cell where I can type in a name, and then have that name collect under an appropriate field on another worksheet. Then when I type in a different name, into the same cell, it collects that name UNDER the first name on the other worksheet. -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
COUNTIF across all sheets of a workbook | Excel Worksheet Functions | |||
COUNTIF across all sheets of a workbook | Excel Worksheet Functions | |||
How do I convert an Excel workbook that has mulitple sheets into . | Excel Worksheet Functions | |||
copy a workbook from other workbook with lot of sheets wit... | Excel Discussion (Misc queries) | |||
view multiple sheets from same workbook | Excel Worksheet Functions |