vote up 1 vote down star

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...

flag

I'm using Vista and just tested on my colleagues laptop running windowsXP. It works fine there (even with auto calculation & auto syntax on). I'll try restarting, then re-installing if it's still not fixed 'n let you know – Vincent Jul 30 at 4:47

1 Answer

vote up 1 vote down check

Winword VBA IDE works fine, so it's only in Excel for the moment.

I have tried re-installing, I have tried the Excel options > Resources > diagnostic tool which reported that it fixed 1 issue but the problem remained.

The problem effectively seems to be that the Visual Basic Editor compiles every second (or less) and removes spaces.

An ugly work around is to put a single quote after your cursor and it won't remove the spaces, but that's just silly.

I'm currently waiting for the Office 2007 Enterprise "Change" > "Repair" to finish & test it again, else I'm going to stick with the single quote.

link|flag
Repair didn't fix it, I just wrote 40+ lines using a single quote to trick the compiler & I'm going to stick with that 'till I install win7 and get rid of all this. Unfortunetaly due to company policy & as I'm about to go on-site for a project I can't do it right now :( – Vincent Jul 30 at 9:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.