copying input to another cell

G

ghighigirl

How can I enter text in one cell and have it copy to another cell
automatically, not using copy/paste feature. Such as type in date in cell A3
and it automatically appears in cell E33. Also, can this same feature work
if I use a data validation list and want that same pull down feature
selection to appear in another cell as well. Excel 2003.
 
L

L. Howard Kittle

Seems you could put this formula in E33: =A3

When you change A3 the E33 will change.

Do the same with your data valaditation cell where in the destination cell
you enter ='whatever the dv cell is'

Or you could use this event macro to do the same, adjust the ranges to suit
your sheet.

Private Sub Worksheet_Change(ByVal Target As Range)
If Target <> Range("A3") Then Exit Sub
Range("E33").Value = Range("A3").Value
End Sub

Right click the tab and click View Code and paste into the large white area.

HTH
Regards,
Howard
 
J

JLatham

Unless you're hiding some special circumstances, you should be able type the
formula
=A3
down in cell E33 and accomplish what you want. Same for the other situation
with the validated list.
 
G

ghighigirl

This did the trick. I didn't have to enter the macro . I used the same
formula on all cells. Thanks so much.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top