How can I display an unsigned value such as 8134 with an "implied" decimal point e.g. 8.134 without dividing by 1000? Is there a format code that will do this? I have Student Version 8.2.1. Many thanks
If you just want to display it, you can convert it into a string, separate the first character and the remainder, insert a period after the first character and then insert the remainder of the string.