Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Custermd
 
Posts: n/a
Default auto x-fer of data


Trying to keep a specific list of data in ws A. what I would like for xl
to do is:
If I insert a row I would like it to insert rows in the other ws
corresponding to the changes in ws a.

Ex
If I insert a row between a5 and a6 in ws A I would like to insert a
row between a5 and a6 in ws B


--
Custermd
  #2   Report Post  
jahoobob
 
Posts: n/a
Default


Custermd Wrote:
Trying to keep a specific list of data in ws A. what I would like for xl
to do is:
If I insert a row I would like it to insert rows in the other ws
corresponding to the changes in ws a.

Ex
If I insert a row between a5 and a6 in ws A I would like to insert a
row between a5 and a6 in ws B


The simplest thing in my opinion would be to insert your row, with or
without data, select the entire Sheet1 by left clicking the square
between A and 1 (top right), Copy, select Sheet2 tab, select cell A1
and Paste. Sheet2 is exactly like Sheet1.
You can automate it with the following Macro:
Sub Macro1()
Cells.Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Sheet2").Select
Range("A1").Select
ActiveSheet.Paste
Sheets("Sheet1").Select
End Sub
Assign it to a Ctrl + key and it is a two punch function


--
jahoobob
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
How to get Excel to auto sum after it has been saved with data. Willow Oaks Excel Discussion (Misc queries) 1 October 5th 05 01:34 AM
Saving data in a worksheet within a workbook Homeuser Excel Discussion (Misc queries) 2 August 21st 05 10:49 PM
Want to auto hide rows in excel when no data in a certain column. Tim Excel Discussion (Misc queries) 3 June 30th 05 12:52 AM
auto fill sequancial data Art Excel Discussion (Misc queries) 1 February 2nd 05 01:21 PM
Is there a way to get an auto page break as data changes in Excel. george_visalia Excel Discussion (Misc queries) 2 December 16th 04 12:22 AM


All times are GMT +1. The time now is 11:51 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"