30-09-2009, 10:14 PM
I was wondering if someone could write a function that will take a value of like, 1000 and turn it into 1k or 100,000 and turn it into 100k.
Thanks.
Thanks.

1000 to 1k converter
|
30-09-2009, 10:14 PM
I was wondering if someone could write a function that will take a value of like, 1000 and turn it into 1k or 100,000 and turn it into 100k.
Thanks. ![]()
30-09-2009, 10:29 PM
Can't you just make it divide the number by 1000 and add a "k" to the end of it?
30-09-2009, 10:32 PM
DarkSpartan4 Wrote:Can't you just make it divide the number by 1000 and add a "k" to the end of it? I prolly could, but I'd like it to round down so I don't have 1.6828194k
30-09-2009, 10:42 PM
Already have one
![]() Code: Public Function ConvertCurrency(ByVal Amount As Long) As String Quote:Robin:
30-09-2009, 10:53 PM
Awesome. Thanks!
![]() |
« Next Oldest | Next Newest »
|