Hello guys, how are you?
I try to show 1K, 1.1K etc etc but i think i miss something.
I use this:
Variable = 1155
round(variable/1000) & "K"
and the result is:
1K
I use this:
float(variable/1000) & "K"
and the result is:
1.155K
I want to remove "55" (in this example), means the 2 last numbers each time.
Can you help me? Thanks!