How do I format 1000 to 1k

I have a float as a money variable and I want to copy how adventure capitalist formats numbers higher than 999
For example:
1000 = 1k
1100 = 1.1k
10000 = 10k
1000000 = 1m
1150000 = 1.15m
etc.
I also don’t want to run into the limit of the float but continue to go higher while limiting it to two decimal points when being displayed

Use a string.

And make it so if the value = 1000 then set the value to 1 and use an append and add an K to the append.

Tell me if you need more help.

Divide the float by 1,000, then like BlackForceDragon said, use the node Append String.