Context: I am storing the players money as a whole number (lets say, 894) and I want it to display as "$8.94" in the UI.
I start with:
"$"&TotalCash
But I don't know where to go from there to add the "." before the final 2 characters in the string. I know that "left(text, count)" will get me the index, but how do I insert that in? Thank you!