Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Excel / New Users / April 2007

Tip: Looking for answers? Try searching our database.

Ten to the power of six

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Corren - 13 Apr 2007 19:07 GMT
WinXP, Excel 2007
I am unable to show this number in a cell. How do I do it?
Thank you.
Luke Moraga - 13 Apr 2007 19:18 GMT
I'm not exactly sure what format you're wanting, so here's several.

If your wanting to display "10^6" exactly liek that, and you don't need it
for a calculation, try putting an apostrophe in front of it to tell Excel
that you want to display exactly as you write.

'10^6

If you need to use in calculation, try formatting the cell to scientific.
YOu can then set how many decimal places you want.

Hope this helps!

Signature

Best Regards,

Luke Moraga

> WinXP, Excel 2007
> I am unable to show this number in a cell. How do I do it?
> Thank you.
Mike - 13 Apr 2007 19:28 GMT
why not type

=10^6

The result will be 1000000

Mike

> WinXP, Excel 2007
> I am unable to show this number in a cell. How do I do it?
> Thank you.
Corren - 13 Apr 2007 23:51 GMT
Thank you. I should have been more explicit.
I need to show, ten to the power of 6 with the number six as
superscript. I was able to show 10³ but not the other one. It always
defaults to 106.
macropod - 13 Apr 2007 23:59 GMT
Hi Corren,

Type '106' into the cell, then select the '6' and superscript it.

Cheers
Signature

macropod
[MVP - Microsoft Word]
-------------------------

Thank you. I should have been more explicit.
I need to show, ten to the power of 6 with the number six as
superscript. I was able to show 10³ but not the other one. It always
defaults to 106.
Dave Peterson - 14 Apr 2007 00:02 GMT
Format the cell as text
Type in 106
Select the 6 in the formulabar
format|Cells (and make the 6 superscript)

You could also prefix the entry with an apostrophe to make it text:  '106

> Thank you. I should have been more explicit.
> I need to show, ten to the power of 6 with the number six as
> superscript. I was able to show 10³ but not the other one. It always
> defaults to 106.

Signature

Dave Peterson

Corren - 14 Apr 2007 23:25 GMT
> Format the cell as text
> Type in 106
> Select the 6 in the formulabar
> format|Cells (and make the 6 superscript)
>
> You could also prefix the entry with an apostrophe to make it text:  '106

Thanks Dave, this worked.
Corren - 14 Apr 2007 00:09 GMT
My problem is showing ten to the power of 6 or 12 as 10 with 6 as a
superscript, like in 10³.
Thank you.
Gord Dibben - 14 Apr 2007 01:19 GMT
Corren

Unfortunately 6 has no ascii code to show it as superscript as 2 and 3 have like
Alt + 0178 or 0179

You could use event code to superscript the numbers.

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column <> 1 Then Exit Sub
   On Error GoTo ErrHandler
   Application.EnableEvents = False
       With Target
       If .Value <> "" Then
      .NumberFormat = "@"
      .Characters(Start:=(Len(Target)), Length:=1).Font.Superscript = True
      End If
End With
 
ErrHandler:
Application.EnableEvents = True

End Sub

As written the code works only on column A.

This is event code.  Right-click on the sheet tab and "View Code".

Copy/paste the above into that sheet module.

Gord Dibben  MS Excel MVP

>My problem is showing ten to the power of 6 or 12 as 10 with 6 as a
>superscript, like in 10³.
>Thank you.
Corren - 14 Apr 2007 23:22 GMT

Rate this thread:






 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.