View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Greg Glynn Greg Glynn is offline
external usenet poster
 
Posts: 137
Default Displaying big numbers WITHOUT scientific notations

On Feb 8, 8:28 am, G. H. <G. wrote:
I'm using C#, and I want my report to show id numbers correctly, without E
(scientific notation). How can I do that? In excel I just choose number, and
it works.



GH,

Have you tried

Range("A1").NumberFormat = "0"



Greg