The only issue that i'm getting is that the input is made vertically (A1,A2,A3,ETC...) and I need it to be made in this order (A1,B1,A2,B2,A3,C3, ETC..)
If possible, I would like to avoid VBA
No chance.
Be sure your macros are enabled. Here is the article how to enable:
Change macro security settings in Excel - Excel
Right-click on the sheet tab
Choose "View Code"
Paste in the code below
Close the VBA editor
Before you copy the code below into your file please read this article:
VBA issues with new forum editor - Microsoft Community
Andreas.
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.EnableEvents = False
On Error GoTo ExitPoint
Select Case Target.Column
Case 1
With Target.Offset(-1, 1)
If IsEmpty(.Value) Then .Select
End With
Case 2
With Target.Offset(, -1)
If IsEmpty(.Value) Then .Select
End With
End Select
ExitPoint:
Application.EnableEvents = True
End Sub