Talk About Network

Google


Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Mac > Excel Office for Mac > Multiple data e...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 1 of 3 Topic 5585 of 5968
Post > Topic >>

Multiple data entry cells

by =?Utf-8?B?S2luZGx5c2luZnVs?= <Kindlysinful@[EMAIL PROTECTED] May 4, 2008 at 07:36 PM

Hello,

 I am using the following to enter data into cell A2 sheet 1. Then have
that 
data transfered to sheet 2 the next available cell in column A. 
(a2,a3,a4,a5,a6.... and so on)

 Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address <> "$A$2" Then Exit Sub
If Target.Cells.Count > 1 Then Exit Sub
If Target.Value = "" Then Exit Sub
Application.ScreenUpdating = False
Target.Copy Destination:=Sheets("Sheet2").Range("A" & 
Rows.Count).End(xlUp).Offset(1, 0)
Target.Value = ""
Application.ScreenUpdating = True
End Sub

 What I need to do is be able to enter data into A2, B2, C2, D2, E2....
and 
have that data sent to the next available cell in it's respective column
on 
sheet 2.
 If I enter into B2 sheet 1 that data will goto Sheet 2 B2, then the next 
time I enter data into Sheet 1 B2 that data will goto Sheet 2 B3 and so
on....

 Any help???
 




 3 Posts in Topic:
Multiple data entry cells
=?Utf-8?B?S2luZGx5c2luZnV  2008-05-04 19:36:10 
Re: Multiple data entry cells
JE McGimpsey <jemcgimp  2008-05-06 08:25:08 
Re: Multiple data entry cells
=?Utf-8?B?S2luZGx5c2luZnV  2008-05-06 22:34:00 

Post A Reply:
  Go here to Signup

AddThis Feed Button


About - Advertising - Contact - Frequently Asked Questions - Privacy Policy - Terms of Use - Signup

Contact
tan12V112 Thu Jul 24 3:06:08 CDT 2008.