View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Die_Another_Day Die_Another_Day is offline
external usenet poster
 
Posts: 644
Default urgent : count of digits in a number

Like....

Function CountDigits(ByVal Number as integer) as integer
CountDigits = Len(Number)
End Function

Or did I miss something?

Die_Another_Day