Copy Sheet information to a second sheet- dynamically

electrichi01

New Member
Joined
Aug 10, 2009
Messages
44
Hi

I'd like to take the details from one sheet and pull over all of the data to a second sheet and keep all of the formatting as well as keeping the data dynamic- when it gets changed on sheet 1, it transposes the changes to sheet 2.

I know I can do the -sheet1! - reference to get the data over to sheet2, but there are lots of data and formatting in sheet 1.

I've tried to cut and paste special- and it does bring it all over, formatting wise, but it doesn't change the data if it is changed dynamically on sheet 1.

Any suggestions or solutions?

Thank you
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
HI,
The only thing that comes to mind would be to use the sheet module in vba with the change event (can specify what rang and once it is changed will do something).

this would be the below proceedure

Rich (BB code):
Rich (BB code):
Private Sub Worksheet_Change(ByVal Target As Range)
 
    MsgBox "You just changed " & Target.Address
 
End Sub
 
Upvote 0

Forum statistics

Threads
1,224,521
Messages
6,179,286
Members
452,902
Latest member
Knuddeluff

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top