I'm trying to pull the Application.MoveAfterReturnDirection value from a cell on sheet. Unfortunately, the code below doesn't work. Is this possible?
VBA Code:
Sub Load()
Range("Load!A1").Value = Application.Username
ActiveWorkbook.CustomViews(Range("Load!D1").Value).Show
Application.MoveAfterReturnDirection = Range("Load!C1").Value
End Sub