I have value ranging from 1 to 10000000. After value 10000 i need to show values as 1E6,1E7,1E8,.... How to set this in string.Format ?
Thanks to all for replying.
Now i am able to display 1E5,1E6,1E7,....by using format "0.E0"
but i dont want to set "E" from 1 to 10000.
How to go about this ?