Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Copy data from one worksheet to another

Worksheet 1 has data that will always stay in there appropriate cell address
and be available for only one person to update. Worksheet 2 will be a copy of
Worksheet 1 but only used to sort by criteria in a given column and only be
used for sorting purposes by more than one person. Any data that is changed
in Worksheet 1 will automatically change the data in Worksheet 2.

How can I accomplish this? The "=Sheet1!$A$1" function is not feasible since
I am over 150 columns wide and at least 1000 rows deep. I am sure there is
some other way to accomplish this task!

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,346
Default Copy data from one worksheet to another

Hi,

It really depends on your data layout. One option would be to create a
pivot table from the data on the first sheet and place it on the second one.

--
If this helps, please click the Yes button.

Cheers,
Shane Devenshire


"Sparrkky" wrote:

Worksheet 1 has data that will always stay in there appropriate cell address
and be available for only one person to update. Worksheet 2 will be a copy of
Worksheet 1 but only used to sort by criteria in a given column and only be
used for sorting purposes by more than one person. Any data that is changed
in Worksheet 1 will automatically change the data in Worksheet 2.

How can I accomplish this? The "=Sheet1!$A$1" function is not feasible since
I am over 150 columns wide and at least 1000 rows deep. I am sure there is
some other way to accomplish this task!

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,071
Default Copy data from one worksheet to another

Since sheet 2 is used for sorting, it follows that sheet 2 is not a copy of
sheet 1, therefore updating a cell in sheet 2 whenever that same cell is
changed in sheet 1 is not an option.
You will need VBA programming to do what you want. The first macro below
will fire whenever any change is made to any cell in Sheet1. When that
happens, this macro will clear the entire Sheet2 and will then copy the
entire Sheet1 to Sheet2.
This macro is a sheet event macro and must be placed in the Sheet1 module.
To access that module, right-click on the Sheet1 tab and select View Code.
Paste this macro into that module. "X" out of the module to return to
Sheet1.
Depending on how and when and how many times Sheet1 is updated, copying the
entire sheet (what this macro does) each and every time that any cell in
Sheet1 is changed may not be very efficient. You may want to run the macro
yourself by, say, clicking on a button after the updating of Sheet1 is
complete. If you want to do that, place the second macro shown below in a
regular module , place a button on Sheet1 and assign that macro to that
button. Post back if you need more. HTH Otto
Private Sub Worksheet_Change(ByVal Target As Range)
Sheets("Sheet2").Cells.ClearContents
Cells.Copy
Sheets("Sheet2").Range("A1").PasteSpecial
Application.CutCopyMode = False
End Sub

Sub UpdateSheet2
Sheets("Sheet2").Cells.ClearContents
Cells.Copy
Sheets("Sheet2").Range("A1").PasteSpecial
Application.CutCopyMode = False
End Sub
"Sparrkky" wrote in message
...
Worksheet 1 has data that will always stay in there appropriate cell
address
and be available for only one person to update. Worksheet 2 will be a copy
of
Worksheet 1 but only used to sort by criteria in a given column and only
be
used for sorting purposes by more than one person. Any data that is
changed
in Worksheet 1 will automatically change the data in Worksheet 2.

How can I accomplish this? The "=Sheet1!$A$1" function is not feasible
since
I am over 150 columns wide and at least 1000 rows deep. I am sure there is
some other way to accomplish this task!



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,718
Default Copy data from one worksheet to another

Try this:

Right click on Sheet1 select move or copy tick on Create a copy OK



"Sparrkky" wrote:

Worksheet 1 has data that will always stay in there appropriate cell address
and be available for only one person to update. Worksheet 2 will be a copy of
Worksheet 1 but only used to sort by criteria in a given column and only be
used for sorting purposes by more than one person. Any data that is changed
in Worksheet 1 will automatically change the data in Worksheet 2.

How can I accomplish this? The "=Sheet1!$A$1" function is not feasible since
I am over 150 columns wide and at least 1000 rows deep. I am sure there is
some other way to accomplish this task!

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,766
Default Copy data from one worksheet to another

Hi,

Why not =Sheet1!A1 and then copy down and right

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"Sparrkky" wrote in message
...
Worksheet 1 has data that will always stay in there appropriate cell
address
and be available for only one person to update. Worksheet 2 will be a copy
of
Worksheet 1 but only used to sort by criteria in a given column and only
be
used for sorting purposes by more than one person. Any data that is
changed
in Worksheet 1 will automatically change the data in Worksheet 2.

How can I accomplish this? The "=Sheet1!$A$1" function is not feasible
since
I am over 150 columns wide and at least 1000 rows deep. I am sure there is
some other way to accomplish this task!

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
Copy data from one worksheet to another DCB New Users to Excel 2 May 23rd 09 04:22 AM
copy from B worksheet to A worksheet with NO repeated data tikchye_oldLearner57 Excel Discussion (Misc queries) 1 September 29th 06 06:56 PM
copy data from a worksheet confused teacher Excel Worksheet Functions 3 August 17th 06 12:02 PM
copy data in a cell from worksheet A to worksheet B rajesh Excel Discussion (Misc queries) 1 February 21st 06 07:40 AM
PLEASE HELP......COPY DATA FROM ONE WORKSHEET TO ANOTHER reegan96 Excel Worksheet Functions 2 April 6th 05 07:17 PM


All times are GMT +1. The time now is 02:26 PM.

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

About Us

"It's about Microsoft Excel"