vote up 1 vote down star
1

Is there a way to convince the VBA editor in Excel to stop auto-formatting lines to remove the space at the end when I pause in my typing for a quarter second?

flag

4 Answers

vote up 0 vote down check

There is sort of a way to turn off the auto-"correction" in the VBA Editor.

Tools Menu -> Options -> Editor Tab -> Clear the Auto Syntax Check box

Sadly, this won't solve all your problems, as the VBA Editor tends to have a mind of its own, for better or worse.

link|flag
2  
And while you're there, you should check the Require Variable Declaration box. It will auto-enter an Option Explicit in every new file, saving you potential frustration when debugging a variable that just won't change since there's a typo in its name. – A. Scagnelli Jul 22 at 13:00
vote up 0 vote down

I don't think I've ever seen the VBE remove a space when I've stopped typing. It will remove trailling spaces from lines if you move to another line, but that's something different and not behaviour that I think can be altered.

link|flag
Oh, it does. I can't recall how I got that behavior un-stuck. – Smandoli Jul 24 at 4:08
vote up 1 vote down

I've definitely had that issue before, where the vba editor would format as I was typing (not just when I went to another line). For me, it seemed to be related to a Microsoft Web Browser control that I had in an open workbook. When I took out the web browser, the VBA editor started acting normally again. I have no idea why that worked, but it did. Now I avoid using that control in my workbooks.

link|flag
vote up 0 vote down

Something is causing your spreadsheet to recalculate while you are in the VBA Editor and this 'compiles' your code and thus strips the spaces. You need to stop the cells recalculating while you are editing. Turning the calculation to manual in the spreadsheet. Tools > Options > Calculation should do the trick.

I noticed this when I had cells recalculating thanks to a DDE connection.

link|flag
This answer sounds right to me, based on similar experience in Access. I can't remember what was causing code to twitch, but I was learning about recursion at the time ... shudder ... – Smandoli Jul 28 at 4:53

Your Answer

Get an OpenID
or

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