In VBA, I would like to enter the Edit mode of a selected cell, and move the cursor to the start of the cell.
Via the keyboard, this is accomplished by F2 & Ctrl+Home, and I have been using this code:
SendKeys ("{F2}^{HOME}"), True
SendKeys is causing a NumLock toggle issue :eeek:, and the...