konto usunięte
Temat: Uwaga, pierwszy merytoryczny temat.
Czy to możliwe że w vba nie ma wbudowanej funkcji roundup ?Bo słyszałem że Twoja stara musi radzić sobie używając funkcji arkuszowej..
konto usunięte
konto usunięte
Function froundp(numvalue As Double)
'where [Value] is the field name on the form containing the value to be rounded.
'Checks If the value has anything after the decimal point
'if it does then stop the routine
If (numvalue - Int(numvalue)) <> 0 Then
numvalue = Round(numvalue + 0.5)
End If
froundp = numvalue
End Function
konto usunięte
konto usunięte
Grzegorz
Melniczak
Have you tried
turning it off and
on again?
Function RoundUp(x as Double) as Integer
RoundUp=-Int(-x)
End Function
konto usunięte
Następna dyskusja: