设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

返回列表 发新帖
查看: 1323|回复: 0
打印 上一主题 下一主题

[其它] 求助:为何四舍五入函数不起作用

[复制链接]
跳转到指定楼层
1#
发表于 2006-6-20 21:31:00 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
求助:为何四舍五入函数不起作用?

使用以下代码:

Public Function RoundToLarger(dblInput As Double, intDecimals As Integer) As Double
   
    'Implements a variant of the Round() function, that rounds-to-larger
    'rather than rounds-to-even:
        
    Dim strFormatString As String 'Format string
   
    'If input is zero, just return zero. Else format as appropriate:
    If dblInput <> 0 Then
        strFormatString = "#." & String(intDecimals, "#")
        RoundToLarger = Format(dblInput, strFormatString)
    Else
        RoundToLarger = 0
    End If
   
End Function

却不能将56.54X5430四舍五入,得数为307012.22,而不是307012.20?

请各位帮忙解决,谢谢!
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享 分享淘帖 订阅订阅
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-5-2 15:18 , Processed in 0.091979 second(s), 24 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表