Code
If {tBox1 is in Focus} Then
myCell = "A" & CStr(curRow)
Range(myCell).Select
End If
If {tBox2 is in Focus} Then
myCell = "B" & CStr(curRow)
Range(myCell).Select
End If
If the cursor is moved to tBox2 (via mouse-click, Tab or Enter key), the relevant column is to be selected. (I've experimented with ActiveControl and ActiveControl.Name but they only return "False" as a value). Thanks for your help.