Please help me with looking up the empty cell and paste value in the next cell.
Windows("Warehouse Schedule.xlsx").Activate
Range("C5:M170").Select
Selection.Copy
Windows("Attendance Report.xlsx").Activate
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("A169").Select
Windows("Warehouse Schedule.xlsx").Activate
Range("C177:M197").Select
Application.CutCopyMode = False
Selection.Copy
Windows("Attendance Report.xlsx").Activate
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Thank you in advance
Windows("Warehouse Schedule.xlsx").Activate
Range("C5:M170").Select
Selection.Copy
Windows("Attendance Report.xlsx").Activate
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("A169").Select
Windows("Warehouse Schedule.xlsx").Activate
Range("C177:M197").Select
Application.CutCopyMode = False
Selection.Copy
Windows("Attendance Report.xlsx").Activate
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Thank you in advance