自定义小数位函数源码! Public Function n2(D As Double) As Double n2 = Int(D * 100 + 0.5) / 100 Exit Function '此函数可保留两位小数 End Function Public Function n3(D As Double) As Double n3 = Int(D * 1000 + 0.5) / 1000 Exit Function ' 此函数可保留叁位小数 End Function Public Function n4(D As Double) As Double n4 = Int(D * 10000 + 0.5) / 10000 Exit Function ’此函数可保留四位小数 End Function 以此类推,可做出n5,n6,n7,n8.................你要精确多少位,自已都可能做! 也可以做成这样的自定义函数 Public Function nn(n as Integer,D As Double) As Double if n<0 then msgbox "位数不能少于0" exit Function end if n2 = Int(D * 10^n + 0.5) / 10^n End Function 如果是0位,即取整 |
以下是引用tmtony在2002-6-14 18:17:18的发言:
倒是忘了:)
再改
Public Function nn(n as Integer,D As Double) As Double
if n<0 then
msgbox "位数不能少于0"
exit Function
end if
n2 = Int(D * 10^n + 0.5) / 10^n
End Function
|站长邮箱|小黑屋|手机版|Office中国/Access中国
( 粤ICP备10043721号-1 )
GMT+8, 2025-4-3 11:56 , Processed in 0.073283 second(s), 23 queries .
Powered by Discuz! X3.3
© 2001-2017 Comsenz Inc.