I need to enter a series of equations into a VBA function. The equations contain coefficients in scientific notation and I need to keep this notation to allow easy checking of the VBA script.
However, as soon as I enter a scientific number in the VBA editor and hit Return, the number is automatically converted to a floating number. Although accuracy is not effected, readability suffers tremendously and makes checking very hard.
How can I suppress auto formatting in the VBA 7.0 editor?
For example, if I enter the following line in the VBA editor:
e = 3.472e-4 * d + 2.156e-7
and hit Return I end up seeing the following line
e = 0.0003472 * d + 0.0000002156
I need to somehow stop this auto-formatting nightmare.