设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

Round函数四舍五入不正确,怎么办?

1970-1-1 08:00| 发布者: Dave Mc&nb| 查看: 2539| 评论: 0

作    者:Dave Mc Donald  
发布日期:2003年9月10日
摘    要:Round函数返回一个数值,该数值是按照指定的小数位数进行四舍五入运算的结果。可是当保留位跟着的即使是5,有可能进位,也有可能舍去,机会各50%。这样就会造成在应用程序中计算有误。下面这个函数能真正实现四舍五入功能,用以取代Round函数。

正    文:


Public Function RoundToLarger(dblInput As Double, intDecimals As Integer) As Double
    
    
'执行Round()函数,有可能进位
    '也有可能舍去
        

    Dim strFormatString As String '格式化字符串
    
    '如果是“0”,则返回“0”,否则进行适当的格式化:
    If dblInput <> 0 Then
        strFormatString = "#." & String(intDecimals, "#")
        RoundToLarger = Format(dblInput, strFormatString)
    Else
        RoundToLarger = 0
    End If
    
End Function

最新评论

QQ|站长邮箱|小黑屋|手机版|Office中国/Access中国 ( 粤ICP备10043721号-1 )  

GMT+8, 2025-4-4 05:15 , Processed in 0.076906 second(s), 16 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

返回顶部