Please Help Create Sub Sheet w/Master Sheet using VBA/MACRO
Closed
anniesmash
Posts
1
Registration date
Thursday September 24, 2015
Status
Member
Last seen
September 25, 2015
-
Sep 25, 2015 at 03:46 AM
RayH Posts 122 Registration date Tuesday August 31, 2010 Status Contributor Last seen June 20, 2016 - Sep 27, 2015 at 02:23 PM
RayH Posts 122 Registration date Tuesday August 31, 2010 Status Contributor Last seen June 20, 2016 - Sep 27, 2015 at 02:23 PM
Related:
- Please Help Create Sub Sheet w/Master Sheet using VBA/MACRO
- Google sheet right to left - Guide
- Master royale - Download - Strategy
- Little alchemy cheat sheet - Guide
- Windows network commands cheat sheet - Guide
- Mark sheet in excel - Guide
1 response
RayH
Posts
122
Registration date
Tuesday August 31, 2010
Status
Contributor
Last seen
June 20, 2016
26
Sep 27, 2015 at 02:23 PM
Sep 27, 2015 at 02:23 PM
You mention 'certain information' but you don't specify what information.
This should replicate the MasterSheet to the SubMaster sheet so changes to the MasterSheet are also put in the SubMaser sheet.
Put this in the VBAProject for MasterSheet.
This relies on the two sheets being copies of each other to start with (it looks like there are).
This should replicate the MasterSheet to the SubMaster sheet so changes to the MasterSheet are also put in the SubMaser sheet.
Private Sub Worksheet_Change(ByVal Target As Range) Worksheets("SubMaster").Range(Target.Address) = Target.Formula End Sub
Put this in the VBAProject for MasterSheet.
This relies on the two sheets being copies of each other to start with (it looks like there are).