Public Function MinAsc( _ ByVal vString As Variant _ ) As Variant
MaxAsc("DCBABCD") = 65 MaxAsc("123") = 49 MaxAsc(123) = 49See also:
MaxAsc FunctionvString: String containing the characters whose ASCII values are examined to determine the minimum. Function returns Null if vString is Null or cannot be fixed up to a String.
Function returns Null if vString is an empty string (one with no characters whose minimum ASCII value could be determined).
Note: Function uses the ASCII value of characters to determine if they match, which is in effect the same as using Binary comparisons.
Copyright 1996-1999 Entisoft
Entisoft Tools is a trademark of Entisoft.