Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Turn Off Scientific Notation

I do math as a hobby sometimes. I like to play with patterns in numbers.

My problem is this: I'm looking for patterns in exponents of 2. I'm trying to get the FULL number with every digit without scientific notation, but at 2^49 (2 to the 49th power) the program starts using scientific notation. How do I turn off scientific notation and get the number in all its glory without an abridged version??? I realize the reason WHY it does this, but I do NOT want this feature to be used in order to find patterns in the numbers. I need the whole thing!!!!
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Turn Off Scientific Notation

Format the cell as Number

Also, excel only shows 15 digits of precision. You are close to that limit.

--
Regards,
Tom Ogilvy


"Jabberwocky" wrote in message
...
I do math as a hobby sometimes. I like to play with patterns in numbers.

My problem is this: I'm looking for patterns in exponents of 2. I'm

trying to get the FULL number with every digit without scientific notation,
but at 2^49 (2 to the 49th power) the program starts using scientific
notation. How do I turn off scientific notation and get the number in all
its glory without an abridged version??? I realize the reason WHY it does
this, but I do NOT want this feature to be used in order to find patterns in
the numbers. I need the whole thing!!!!


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,080
Default Turn Off Scientific Notation

I'm not getting this in Excel 2002, but remember that Excel can only handle
15 significant digits. 2^50 is 16 digits and any digits beyond 15 are going
to show up as 0.

--

Vasant

"Jabberwocky" wrote in message
...
I do math as a hobby sometimes. I like to play with patterns in numbers.

My problem is this: I'm looking for patterns in exponents of 2. I'm

trying to get the FULL number with every digit without scientific notation,
but at 2^49 (2 to the 49th power) the program starts using scientific
notation. How do I turn off scientific notation and get the number in all
its glory without an abridged version??? I realize the reason WHY it does
this, but I do NOT want this feature to be used in order to find patterns in
the numbers. I need the whole thing!!!!


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 690
Default Turn Off Scientific Notation

I do math as a hobby

To explore larger numbers with Excel, you need to use vba. Excel vba is
limited to 2^94. Good luck with "Patterns." :)

Sub Demo()
Dim n As Variant
Dim j As Long
n = CDec(1)

For j = 1 To 94
n = n * 2
Debug.Print j; FormatNumber(n, 0, , , vbTrue)
Next j
End Sub

Returns:
92 4,951,760,157,141,521,099,596,496,896
93 9,903,520,314,283,042,199,192,993,792
94 19,807,040,628,566,084,398,385,987,584

HTH
Dana DeLouis

"Jabberwocky" wrote in message
...
I do math as a hobby sometimes. I like to play with patterns in numbers.

My problem is this: I'm looking for patterns in exponents of 2. I'm

trying to get the FULL number with every digit without scientific notation,
but at 2^49 (2 to the 49th power) the program starts using scientific
notation. How do I turn off scientific notation and get the number in all
its glory without an abridged version??? I realize the reason WHY it does
this, but I do NOT want this feature to be used in order to find patterns in
the numbers. I need the whole thing!!!!


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
turn off scientific notation slugger92 Excel Discussion (Misc queries) 3 February 21st 19 08:25 PM
Scientific notation Biocellguy Excel Worksheet Functions 2 May 24th 07 07:48 PM
how can I turn off scientific notation lfife Excel Discussion (Misc queries) 1 February 28th 07 04:04 PM
scientific notation T.Reisz Excel Discussion (Misc queries) 4 June 12th 06 01:59 PM
Scientific notation Clive Excel Discussion (Misc queries) 2 February 8th 05 11:38 PM


All times are GMT +1. The time now is 12:05 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"