Excel Automated Worksheets?!
Closed
65sickster
venkat1926
- Posts
- 1
- Registration date
- Wednesday December 16, 2009
- Status
- Member
- Last seen
- December 17, 2009
venkat1926
- Posts
- 1864
- Registration date
- Sunday June 14, 2009
- Status
- Contributor
- Last seen
- August 7, 2021
Related:
- Excel Automated Worksheets?!
- Excel duplicate worksheet - Guide
- Excel split worksheets into separate files - Guide
- Copy paste rows in Excel across worksheets ✓ - Forum - Excel
- Excel current worksheet ✓ - Forum - Excel
- Excel vba worksheet copy and rename ✓ - Forum - Excel
1 reply
venkat1926
Dec 17, 2009 at 08:58 PM
- Posts
- 1864
- Registration date
- Sunday June 14, 2009
- Status
- Contributor
- Last seen
- August 7, 2021
Dec 17, 2009 at 08:58 PM
reg change of values in column A
right click the sheet1 tab and click viewcode and in the window that comes up copy this event code
test a few cases
regarding introducing a new row
keeping control key down click all the tabs. these will turn to white background
now if you type a row it will be automatically entered in all the sheets in the same row
REMEMBER to click one of the now turned white tabs so that the sheets are deselected and only sheet1 is selected.
my versions of excel is windows xp excel 2002.
confirm whether you got what you want
right click the sheet1 tab and click viewcode and in the window that comes up copy this event code
Private Sub Worksheet_Change(ByVal Target As Range) Application.EnableEvents = False On Error GoTo stage Dim j As Integer, k As Integer, r As Integer, c As Integer j = Worksheets.Count 'MsgBox j If Target.Column <> 1 Then Exit Sub r = Target.Row c = Target.Column Target.Copy For k = 1 To 3 'MsgBox Sheets(k).Name If Sheets(k).Name = "Sheet1" Then GoTo nnext Worksheets(k).Cells(r, c).PasteSpecial nnext: Next k Application.CutCopyMode = False stage: Application.EnableEvents = True End Sub
test a few cases
regarding introducing a new row
keeping control key down click all the tabs. these will turn to white background
now if you type a row it will be automatically entered in all the sheets in the same row
REMEMBER to click one of the now turned white tabs so that the sheets are deselected and only sheet1 is selected.
my versions of excel is windows xp excel 2002.
confirm whether you got what you want