auto copy newly inputted data to another column

djdave007

New Member
Joined
Sep 17, 2008
Messages
13
Hi,
Is it possible to input data into a specific cell, say A2 on worksheet 1, and the data be automatically copied to columnA on worksheet 2, and listed.

e.g: If I enter a value of 5.01 in A2 (ws1), press return.
In the same cell type 10.3, return,
In the same cell type 20.5, return.

Then go to Worksheet 2, and listed in column A are:
5.01
10.3
20.5
Additionally, is it possible that whenever I enter a value in the cell A2, after pressing return, it clears ready for the next input?

I am trying to capture a long string of data on the same "cover" sheet without creating multiple documents so any help you can give would be most grateful.

thanks again
dave
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
So, each time you enter in sheet1 A2, you want the value copied to sheet2 col a in the next available row ?
 
Upvote 0
yes...
eventually I want to be able to create charts from this raw data, but I need a way of cataloguing it.
 
Upvote 0
Something along the lines of

Private Sub Worksheet_Change(ByVal Target As Range)

Dim rng1 As Range
If Target.Row = 2 And Target.Column = 2 Then

lastrow = Range("c65536").End(xlUp).Row

Set rng1 = Range("c" & lastrow)

rng1.Offset(1, 0).Select
Selection = Target.Value


Target.ClearContents


End If

End Sub
 
Upvote 0

Forum statistics

Threads
1,215,059
Messages
6,122,916
Members
449,093
Latest member
dbomb1414

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top