基础sample

基础sample
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

你可能感兴趣的:(基础sample)