Question : Number Format?

Hello Experts,

Can I set number format in a cell such that, if user enters 1000 it should displayed as 10 in a cell. Means whatever the value user enters it should displayed as (value / 100).

User Entered Value         ---     Display Value
100                                                  1
1000                                                10
7654                                                76.54
98968                                              989.68


Thanks in advance
itsvtk

Answer : Number Format?

But this format will work, up to 999M:

    [<100000]#\.00;[<100000000]0\,000\.00;0\,000\,000\.00

(You do not need the last test, as it is the last choice. Also '?' and '0' are the same in this context, so <10 is not special.)

If you have negative values, you might want to change that a bit, of course. And I don't see any way to have blanks for no "pseudo-decimals", e.g. 1 for 1.00.

Cheers!
Random Solutions  
 
programming4us programming4us