I'd consider myself to have advanced visual basic knowledge and capabilities, however a project I've been working on for a month or so is in risk of being thrown away as my workbook is having issues every time I run a procedure that places formulas into cells. I run into a problem where if I then type in a value on the spreadsheet that I'm manipulating with VBA then the spreadsheet becomes unresponsive, as in I can't use Freeze Panes to view the spreadsheet without excel glitching out, or whenever I type a value into the worksheet it just disappears after I hit enter.
I have figured out how to get it to work again. And it's by stepping through a macro like this.
I cant just run this code it only works when I step through it by hitting F8
Any help will be appreciated.
I have figured out how to get it to work again. And it's by stepping through a macro like this.
Code:
Sub applicationSaver() Application.EnableEvents = False: Application.ScreenUpdating = False
Application.EnableEvents = True: Application.ScreenUpdating = True
End Sub
I cant just run this code it only works when I step through it by hitting F8
Any help will be appreciated.