Hi, thanks in advance,
I am moving some calculations from Excel to Vb, I am having a tough time with one of the calculations.
4.1886226531/360 this is the Excel Calculation(shortened)
the answer in Excel is .011635062925495
in VB I am writing it to be
dbl_temp1 = 4.1886191152
dbl_temp2 = (dbl_temp1 / 360)
the answer in vb is 1.16350530977778E-02
I only need to carry out the decimal 5 positions. The aswer are about the same except vb has the E stuff going on. I am not a math major and I am not sure how to eliminate the E in the answer.
Thanks again
Jim
I am moving some calculations from Excel to Vb, I am having a tough time with one of the calculations.
4.1886226531/360 this is the Excel Calculation(shortened)
the answer in Excel is .011635062925495
in VB I am writing it to be
dbl_temp1 = 4.1886191152
dbl_temp2 = (dbl_temp1 / 360)
the answer in vb is 1.16350530977778E-02
I only need to carry out the decimal 5 positions. The aswer are about the same except vb has the E stuff going on. I am not a math major and I am not sure how to eliminate the E in the answer.
Thanks again
Jim