Hi I am using the following code to automatically populate "LTC and CHC Panel Processes" tab when I complete the first tab, I also want this to automatically populate 2 other tabs, so 3 tabs in total when I complete the first 5 columns on the first tab any help gratefully received
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Count > 1 Then Exit Sub
With Application
.EnableEvents = False
.ScreenUpdating = False
End With
Select Case Target.Column
Case Is = 1
Target.Copy
Sheets("LTC and CHC Panel Processes").Range("A" & Rows.Count).End(xlUp)(2).PasteSpecial Paste:=xlPasteValues
Target.Offset(, 1).Select
Case Is = 2
Target.Copy
Sheets("LTC and CHC Panel Processes").Range("B" & Rows.Count).End(xlUp)(2).PasteSpecial Paste:=xlPasteValues
Target.Offset(, 1).Select
Case Is = 3
Target.Copy
Sheets("LTC and CHC Panel Processes").Range("C" & Rows.Count).End(xlUp)(2).PasteSpecial Paste:=xlPasteValues
Target.Offset(, 1).Select
Case Is = 4
Target.Copy
Sheets("LTC and CHC Panel Processes").Range("D" & Rows.Count).End(xlUp)(2).PasteSpecial Paste:=xlPasteValues
Target.Offset(, 1).Select
Case Is = 5
Target.Copy
Sheets("LTC and CHC Panel Processes").Range("E" & Rows.Count).End(xlUp)(2).PasteSpecial Paste:=xlPasteValues
Target.Offset(, 1).Select
Case Else
'
End Select
With Application
.EnableEvents = True
.CutCopyMode = False
.ScreenUpdating = True
End With
End Sub