A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
If I type Option Explicit into an otherwise empty macro and then hit the run button I get the error message:
You mean you tried this:
Sub Test()
Option Explicit
End Sub
That is of course a compile error, because "Option Explicit" is a compiler instruction and has to be placed on the top of a module.
And about the RAM usage... might be related to your file and/or your macro. If we can't view it, we can't say anything.
Andreas.