ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Excel List (https://www.excelbanter.com/excel-discussion-misc-queries/159403-excel-list.html)

freakyquo

Excel List
 
Hello,

I have a list with headings, eg "A", "B", "C".

Is there a way that I can enter data on one spreadsheet that will add data
to the bottom of the list?

For example, I could have cells on sheet 1 headed A B and C, and type in the
data, and then this adds the data to the bottom of the list on sheet 2. Then
I can re-enter data in my cells in sheet 1, and add another row at the bottom
of the list.

Any ideas?

Any ide

Rich[_2_]

Excel List
 
you mean you want to use sheet 1 to autofill sheet 2 ?

"freakyquo" wrote:

Hello,

I have a list with headings, eg "A", "B", "C".

Is there a way that I can enter data on one spreadsheet that will add data
to the bottom of the list?

For example, I could have cells on sheet 1 headed A B and C, and type in the
data, and then this adds the data to the bottom of the list on sheet 2. Then
I can re-enter data in my cells in sheet 1, and add another row at the bottom
of the list.

Any ideas?

Any ide


freakyquo

Excel List
 
I guess so, yes

"Rich" wrote:

you mean you want to use sheet 1 to autofill sheet 2 ?

"freakyquo" wrote:

Hello,

I have a list with headings, eg "A", "B", "C".

Is there a way that I can enter data on one spreadsheet that will add data
to the bottom of the list?

For example, I could have cells on sheet 1 headed A B and C, and type in the
data, and then this adds the data to the bottom of the list on sheet 2. Then
I can re-enter data in my cells in sheet 1, and add another row at the bottom
of the list.

Any ideas?

Any ide


Don Guillett

Excel List
 
Since you didn't tell us where you list is and where you want the numbers,
this should do it.
On sourse sheet, right click sheet tabview codeinsert thisChange
destination sheet name and columns K:M to yours. SAVE workbook

Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Columns("k:m")) Is Nothing Then
With Sheets("sheet22") 'destination sheet with a b c
mc = .Rows(1).Find(Cells(1, Target.Column), LookIn:=xlValues).Column
lr = .Cells(Rows.Count, mc).End(xlUp).Row + 1
Target.Copy .Cells(lr, mc)
End With
End If
End Sub
--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"freakyquo" wrote in message
...
Hello,

I have a list with headings, eg "A", "B", "C".

Is there a way that I can enter data on one spreadsheet that will add data
to the bottom of the list?

For example, I could have cells on sheet 1 headed A B and C, and type in
the
data, and then this adds the data to the bottom of the list on sheet 2.
Then
I can re-enter data in my cells in sheet 1, and add another row at the
bottom
of the list.

Any ideas?

Any ide




All times are GMT +1. The time now is 02:13 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com