Excel 2007 Visual Basic Editor: eats spaces, throws cursor around
Posted
by Vincent
on Stack Overflow
See other posts from Stack Overflow
or by Vincent
Published on 2009-07-30T04:35:55Z
Indexed on
2010/03/31
11:03 UTC
Read the original article
Hit count: 331
I can't resolve this issue, I found a similar question here but:
- setting the workbook to Manual calculation (alt-m-x-m or alt-t-o>formulas) didn't work
- Setting editor options to disable: Auto syntax check & Background compile didn't work
anybody have any idea how to fix this very annoying behaviour, I'm used to quickly pop up VBA (alt-f11), f7 to get into code and write some quick procedures there... and it's hard to get out of that habit, I don't want to write any office extension to just add a single quote to every cell in the range
For Each rg In Selection
rg = chr(39) & rg.value
Next
F5, done...
© Stack Overflow or respective owner