79433283

Date: 2025-02-12 13:47:32
Score: 1.5
Natty:
Report link

I found that using Round() helped:

Sub num_test()
Dim num As Double

num = 5.92427068015303E-10
Debug.Print num
num = Round(num, 11)
Debug.Print num

End Sub
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user28755543