OK, try this, Paste this into a module, and run it;
How can I get this code to autorun as soon as I open the worksheet please help I know it is something I am just not sure what the code isCode: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:=3, Link:=1, DisplayAsIcon:=False, _ IconFileName:=False Range("Z3:AA3").Select Selection.Cut Range("AI3").Select ActiveSheet.Paste End Select End Sub