Code:
Dim PDLBV As String
Dim JRTBV As String
PDLBV = PersonalDetailsListBox.Value
JRTBV = JobRoleTextBox.Value
Application.ScreenUpdating = False
EvidenceRowsCount = Range("Evidence").Rows.Count
For Each wrksht In ThisWorkbook.Worksheets
If wrksht.Index > 1 And wrksht.Index <> ThisWorkbook.Worksheets.Count _
And wrksht.Index <> ThisWorkbook.Worksheets.Count - 1 Then
Application.StatusBar = "Updating Worksheet " & wrksht.Name
wrksht.Unprotect ("cpd")
If wrksht.Index = 2 Then
wrksht.Range("D3").Value = PDLBV ''Name
wrksht.Range("D5").Value = JRTBV ''Job Role
End If
If I just step through the code (F8) you can see it thinking about adding the values in each of D3 & D5. How should I be doing this differently?
Many thanks,
D€$