|
-
Mar 25th, 2000, 02:14 AM
#3
Fanatic Member
I think you could probably turn the number into a string, then use some string manipulation functions, then turn is back into a number.
Eg :
' number into string
strNumber = cstr(12345)
' get first 3 digits
strFirst3Digits = Left$(strNumber, 3)
' string into number
intNumber = cint(strFirst3Digits)
Hope this helps. 
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|