Answers for "vbnet round to nearnest thousand"

VBA
0

vbnet round to nearnest thousand

If intMyNumber Mod 1000 >= 500 Then
	intResult = intMyNumber + 1000 - intMyNumber Mod 1000
Else
	intResult = intMyNumber - intMyNumber Mod 1000
End If
Posted by: Guest on January-17-2022

Code answers related to "VBA"

Browse Popular Code Answers by Language