Excel Automated Worksheets?!
Closed
65sickster
Posts
1
Registration date
Wednesday December 16, 2009
Status
Member
Last seen
December 17, 2009
-
Dec 17, 2009 at 05:44 PM
venkat1926 Posts 1863 Registration date Sunday June 14, 2009 Status Contributor Last seen August 7, 2021 - Dec 17, 2009 at 08:58 PM
venkat1926 Posts 1863 Registration date Sunday June 14, 2009 Status Contributor Last seen August 7, 2021 - Dec 17, 2009 at 08:58 PM
Related:
- Excel Automated Worksheets?!
- Transfer data from one excel worksheet to another automatically - Guide
- Excel marksheet - Guide
- Number to words in excel - Guide
- Excel apk for pc - Download - Spreadsheets
- Kernel for excel - Download - Backup and recovery
1 response
venkat1926
Posts
1863
Registration date
Sunday June 14, 2009
Status
Contributor
Last seen
August 7, 2021
811
Dec 17, 2009 at 08:58 PM
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