C
Cheung
Guest
Dim result As Double
Dim first As Double
Dim second As Double
Dim third As Double
Dim fourth As Double
first = 31
second = 13
third = 31
fourth = 434
result = Math.Ceiling((first - second) / third * 434)
MsgBox("result" & result)
Obviously, the correct answer is 252. But it gives 253!! pls suggest how I can solve it. it is a matter of the datatype?
Thank you very much.
Dim first As Double
Dim second As Double
Dim third As Double
Dim fourth As Double
first = 31
second = 13
third = 31
fourth = 434
result = Math.Ceiling((first - second) / third * 434)
MsgBox("result" & result)
Obviously, the correct answer is 252. But it gives 253!! pls suggest how I can solve it. it is a matter of the datatype?
Thank you very much.