I have created a working code.. thank you for viewed time!
Used code:
Sub ApproveManager()
Application.ScreenUpdating = False
'Declare variables
Dim iSheet As Integer, iRow As Long, iRowL As Long, SelectedWeek As Long
'Set up the count as the number of filled rows in the first column and setup selected week
iRowL = Cells(Rows.Count, 1).End(xlUp).Row
SelectedWeek = ActiveSheet.Range("D2")
'Cycle through all the cells in that column:
For iRow = 6 To iRowL
'For every cell that is not empty, search through the first column for a value that match
For iSheet = ActiveSheet.Index + 1 To Worksheets.Count
'For every cell in first column that matches the week value place the relevant text in the relevant row, else nothing
If Cells(iRow, 1).Value = SelectedWeek Then
Cells(iRow, 16).Font.Color = vbBlue
Cells(iRow, 16).Value = "Approved by " & Range("G1") & " on " & Format(Date, "DD-MMM-YY") & " at " & Format(Time, "HH:MM")
Else
End If
Next iSheet
Next iRow
MsgBox ("Write off for week " & SelectedWeek & " is signed, if no record for week " & SelectedWeek & " then nothing is signed")
ActiveSheet.Range("D2").Select
Application.ScreenUpdating = True
End Sub
Bookmarks