Jcat
宠辱不惊,闲看庭前花开花落~~
posts - 173,comments - 67,trackbacks - 0
Controlling Function Recalculation
' the same as Round excel-function
Function  nonStaticRand()
    Application.Volatile 
True
    nonStaticRand 
=   Rnd ()    ' Rnd is a vba-function
End Function

' Calculate only once, so rand number won't be changed afterwards
Function  staticRand()
    Application.Volatile 
False    ' you can ignore this line, default is False
    staticRand  =   Rnd ()
End Function

posted on 2008-03-26 16:26 Jcat 阅读(202) 评论(0)  编辑  收藏 所属分类: VBA

只有注册用户登录后才能发表评论。


网站导航: