have another ?
Hello I have this code and now I want to work it for each of my employees 4-2000, can anyone help here is the code
Sub MoveDate()
Select Case Range("AI3").Value
Case Is = ""
Range("Z3:AA3").Select
Selection.Cut
Range("AI3").Select
ActiveSheet.Paste
Case Else
Range("AI3").Select
Range(Selection, Selection.End(xlToRight)).Select
Selection.Copy
Range("AK3").Select
ActiveSheet.PasteSpecial Format:=12, Link:=1, DisplayAsIcon:=False, _
IconFileName:=False
Range("Z3:AA3").Select
Selection.Cut
Range("AI3").Select
ActiveSheet.Paste
End Select
End Sub
1: tryin to make this script autorun as soon as I open the worksheet?
(i have tried changing the code to Private Sub Workbook_Open() but still will not work )
2. have a list of employees 4-2000 I need this code to work for each employee
any help would be appreciated
thx