http://access.fr.free.fr/
Cette fonction permet de retourner le nombre de décimal d'une donnée.
Expression_Numérique = NbDecimal(strField)La synthaxe de la fonction NbDecimal comprend l'élément suivant :
strField
Aucun exemple disponible pour le moment.
Public Function NbDecimal(strField As String) As Long
Dim intCaract As IntegerDim intStartCaract As IntegerNbDecimal = 0For intCaract = 1 To Len(strField) If Mid(strField, intCaract, 1) = "," Then NbDecimal = Len(strField) - intCaract End IfNext
End Function