--
wethery
------------------------------------------------------------------------
wethery's Profile: http://www.excelforum.com/member.php?action=getinfo&userid=26637
View this thread: http://www.excelforum.com/showthread.php?threadid=401483
"wethery" <wethery.1uqlma_...@excelforum-nospam.com> wrote in
message news:wethery.1uqlma_...@excelforum-nospam.com...
---
HTH,
David McRitchie, Microsoft MVP - Excel [site changed Nov. 2001]
My Excel Pages: http://www.mvps.org/dmcritchie/excel/excel.htm
Search Page: http://www.mvps.org/dmcritchie/excel/search.htm
"wethery" <wethery.1uqlma_...@excelforum-nospam.com> wrote ...
--
MrShorty
------------------------------------------------------------------------
MrShorty's Profile: http://www.excelforum.com/member.php?action=getinfo&userid=22181
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