#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,124
Default 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


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Want to Create a List in Excel 2002; Don't see List in Data Menu? Manoj Excel Discussion (Misc queries) 2 April 7th 06 07:34 PM
base price list compute on to another price list? on excel work sh excel spread sheet Excel Discussion (Misc queries) 0 March 29th 06 06:20 PM
multiple select from the drop down list in excel. list in one sheet and drop down in sriramus Excel Discussion (Misc queries) 5 October 27th 05 06:55 PM
list 1 has 400 names List 2 has 4000. find manes from list 1 on 2 Ed Excel Worksheet Functions 5 September 12th 05 09:48 AM
Does Excel 2002 have a List>Create List option under Data? Jesse Excel Discussion (Misc queries) 3 May 20th 05 01:52 PM


All times are GMT +1. The time now is 12:34 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"