Dim intA As Long = 4212357
Dim myInt As Long = intA
Dim sz As Int = 0
Do While intA > 0
intA = intA / 10
sz = sz + 1
Loop
Dim msg As String
Select sz
Case 1,2,3
Log(myInt)
Case 4,5,6
myInt = myInt / Power(10, 3)
msg = "+" & myInt & "K"
Log(msg)
Case 7,8,9
myInt = myInt / Power(10, 6)
msg = "+" & myInt & "M"
Log(msg)
Case 10,11,12
myInt = myInt / Power(10, 9)
msg = "+" & myInt & "T"
Log(msg)
End Select