ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   automatically copy into cells (https://www.excelbanter.com/excel-programming/334896-automatically-copy-into-cells.html)

markymark

automatically copy into cells
 
Hi,

I'm trying to figure out how to automatically get cells to copy from one
worksheet into another once you enter data.

so if I enter a word into a cell it will automatically fill in another
cell in another worksheet in that same excel file.

Obviously this will help save some time from re-entering information.

Any help would be appreciated.

thanks,
t

R.VENKATARAMAN

automatically copy into cells
 
if only a few cells copy and pastespeial -paste links

e.g.
whenever you type some entry in A1 of sheet1 you want the same to be entered
in A1 of sheet2
select sheet1 A1
copy
select sheet2 A1
pastepecial
pastelink

try this

even if you modify A1 sheet1 the modified entry will be made in sheet2.


markymark wrote in message
...
Hi,

I'm trying to figure out how to automatically get cells to copy from one
worksheet into another once you enter data.

so if I enter a word into a cell it will automatically fill in another
cell in another worksheet in that same excel file.

Obviously this will help save some time from re-entering information.

Any help would be appreciated.

thanks,
t




Gary Keramidas[_2_]

automatically copy into cells
 
not sure if this is the best way, but it works for me

right click sheet one and click view code
paste the code.
then go to sheet1 and enter something from a1 to 10 and see if it shows up
on sheet2 in b1 to b10



Private Sub Worksheet_Change(ByVal Target As Range)
Sheets("Sheet2").Range("B1:b10") = Sheets("Sheet1").Range("a1:a10").Value

End Sub

--


Gary


"markymark" wrote in message
...
Hi,

I'm trying to figure out how to automatically get cells to copy from one
worksheet into another once you enter data.

so if I enter a word into a cell it will automatically fill in another
cell in another worksheet in that same excel file.

Obviously this will help save some time from re-entering information.

Any help would be appreciated.

thanks,
t




markymark

automatically copy into cells
 
Gary Keramidas wrote:
not sure if this is the best way, but it works for me

right click sheet one and click view code
paste the code.
then go to sheet1 and enter something from a1 to 10 and see if it shows up
on sheet2 in b1 to b10



Private Sub Worksheet_Change(ByVal Target As Range)
Sheets("Sheet2").Range("B1:b10") = Sheets("Sheet1").Range("a1:a10").Value

End Sub


Hi,

I've got excel 2003 and I don't see the "view code" option. Is this
only available in later versions of office???

If there is another way to do this I'd like to know.

Thanks,
MM

Gary Keramidas[_2_]

automatically copy into cells
 
right click on the sheet1 tab name and choose view code

--


Gary


"markymark" wrote in message
...
Gary Keramidas wrote:
not sure if this is the best way, but it works for me

right click sheet one and click view code
paste the code.
then go to sheet1 and enter something from a1 to 10 and see if it shows
up on sheet2 in b1 to b10



Private Sub Worksheet_Change(ByVal Target As Range)
Sheets("Sheet2").Range("B1:b10") =
Sheets("Sheet1").Range("a1:a10").Value

End Sub


Hi,

I've got excel 2003 and I don't see the "view code" option. Is this only
available in later versions of office???

If there is another way to do this I'd like to know.

Thanks,
MM




markymark

automatically copy into cells
 
Gary Keramidas wrote:
right click on the sheet1 tab name and choose view code


I only want the contents of one cell to repeat in multiple worksheets
after its entered in the first worksheet. When i hit view code I don't
see anything in the view code section.

I'm sorry I'm not really following.

markymark

automatically copy into cells
 
R.VENKATARAMAN wrote:
if only a few cells copy and pastespeial -paste links

e.g.
whenever you type some entry in A1 of sheet1 you want the same to be entered
in A1 of sheet2
select sheet1 A1
copy
select sheet2 A1
pastepecial
pastelink

try this

even if you modify A1 sheet1 the modified entry will be made in sheet2.


markymark wrote in message
...

Hi,

I'm trying to figure out how to automatically get cells to copy from one
worksheet into another once you enter data.

so if I enter a word into a cell it will automatically fill in another
cell in another worksheet in that same excel file.

Obviously this will help save some time from re-entering information.

Any help would be appreciated.

thanks,
t





Great! Thanks

Erasmus Bowen

automatically copy into cells
 
Not quite copying but maybe the desired effect ?
In the workbook you have 2 sheets.
Name the first one "Sheet1" and the second one " Sheet2".

Switch to Sheet2
In A1 of Sheet2 write this formula
=Sheet1!A1

Switch to Sheet1
In Cell A1 of Sheet1 write "Can you see me ?"

Switch to Sheet2
Read A1
It should have the same data as Sheet1 A1
If not, check the Calculate settings in the Options to see if they're on
automatic or not.

As I said,
Not quite copying but maybe the desired effect ?

Erasmus










"markymark" a écrit dans le message de
news: ...
Hi,

I'm trying to figure out how to automatically get cells to copy from one
worksheet into another once you enter data.

so if I enter a word into a cell it will automatically fill in another
cell in another worksheet in that same excel file.

Obviously this will help save some time from re-entering information.

Any help would be appreciated.

thanks,
t





All times are GMT +1. The time now is 10:27 PM.

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