Could someone tell me how you do a little 2 for a squared symbol. i.e 6mm2
A Anne Troy Sep 2, 2005 #2 Select the 2 in the formula bar, and choose Format-->Cells, and check Superscript. ************ Anne Troy www.OfficeArticles.com
Select the 2 in the formula bar, and choose Format-->Cells, and check Superscript. ************ Anne Troy www.OfficeArticles.com
D David McRitchie Sep 2, 2005 #3 ALT+0178 on the numeric keypad, if using a laptop Fn+ALT+0178 with the blue numeric keypad keys
M MrShorty Sep 2, 2005 #4 If you just have the text constant "6mm2" in a cell, press F2, highligh the "2", Format -> Font tab -> Select superscript and press retur twice
If you just have the text constant "6mm2" in a cell, press F2, highligh the "2", Format -> Font tab -> Select superscript and press retur twice
G Gord Dibben Sep 3, 2005 #5 wethery I would be tempted to use a custom format, thus allowing the number portion to remain as a number for calculations. Format>Cell>Number>Custom........enter 0"mm" and using the number pad enter ALT + 0178 Small macro to do the same job........ Sub sq_MilliMeters() Selection.NumberFormat = "0""mm" & Chr(178) & """" '0179 for cubic millimeters End Sub Gord Dibben Excel MVP
wethery I would be tempted to use a custom format, thus allowing the number portion to remain as a number for calculations. Format>Cell>Number>Custom........enter 0"mm" and using the number pad enter ALT + 0178 Small macro to do the same job........ Sub sq_MilliMeters() Selection.NumberFormat = "0""mm" & Chr(178) & """" '0179 for cubic millimeters End Sub Gord Dibben Excel MVP