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.
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