How do I restrict non-ASCII keystroke inputs on all cells of a worksheet. The cell should only accept ASCII characters.
Is this even possible?
Supposedly, "KeyPress" event can do the trick, however "KeyPress" is only for objects. Selecting worksheet doesnt have the "KeyPress" event.
This is a sample.
---------
|I | (initial)
---------
|AI | (user type "A")
---------
|AbI | (user type "b")
---------
|AbcI | (user type "c")
---------
|AbcI | (user type "@" but rejected)
---------
|AbcI | (user type "@" but rejected)
---------
|Abc1I | (user type "1")
---------
|Abc12I | (user type "2")
---------
Is this even possible?
Supposedly, "KeyPress" event can do the trick, however "KeyPress" is only for objects. Selecting worksheet doesnt have the "KeyPress" event.
This is a sample.
---------
|I | (initial)
---------
|AI | (user type "A")
---------
|AbI | (user type "b")
---------
|AbcI | (user type "c")
---------
|AbcI | (user type "@" but rejected)
---------
|AbcI | (user type "@" but rejected)
---------
|Abc1I | (user type "1")
---------
|Abc12I | (user type "2")
---------
Comment