When I use the custom number format below, I get 100.000E+01.
Every help file and website I can find says the result should be 1.000E+03 which is what I want.
Shouldn't these 2 lines yield different results? This is killing me.
Every help file and website I can find says the result should be 1.000E+03 which is what I want.
Code:
Debug.Print Format(1000,"##0.000E+00") ' Yields 100.000E+01
Debug.Print Format(1000,"000.000E+00") ' Yields 100.000E+01