Not sure I phrased it correctly in my subject line.
I was wanting to be able to set the formula error checking options on a certain workbook, but not on ALL workbooks. I found this object, ErrorCheckingOptions but I'm not sure I understand its application (no pun intended, see what I did there lol).
I tested and it seems that if I set the error checking options via VBA in one workbook, the settings are persistent the next time I open Excel. I set one of the options like this:
I then closed the workbook and then opened a new blank workbook, setting was the same, and then opened a few other workbooks, one 10 years old (still an xlsx) and the setting was still false.
Question
Do the formula error checking options ever reset automatically? If so, when?
Thanks!!
Matt
I was wanting to be able to set the formula error checking options on a certain workbook, but not on ALL workbooks. I found this object, ErrorCheckingOptions but I'm not sure I understand its application (no pun intended, see what I did there lol).
I tested and it seems that if I set the error checking options via VBA in one workbook, the settings are persistent the next time I open Excel. I set one of the options like this:
Code:
Sub SetErrorOptions()
Application.ErrorCheckingOptions.InconsistentFormula = False
End Sub
I then closed the workbook and then opened a new blank workbook, setting was the same, and then opened a few other workbooks, one 10 years old (still an xlsx) and the setting was still false.
Question
Do the formula error checking options ever reset automatically? If so, when?
Thanks!!
Matt