Home |
Search |
Today's Posts |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I don't think that you can format a cell to show
super/sub scripted characters. However, you can edit the text to do thiis, but you'll lose the formula. Here's a test example which should show how Sub test() Range("B2").Value = "2,45M3" showcubed Range("B2") End Sub Function showcubed(ByRef target As Range) ' 'sets the last character to superscript ' Dim length As Long length = Len(target.Value) With target.Characters(Start:=length, length:=1).Font .Superscript = True End With End Function Patrick Molloy Microsoft Excel MVP -----Original Message----- Am using a excel report generator which works with excel template file. Have a cell in the template file which is referred to as Grid_Value. This cell is populated with a string representing cubic meters of water i.e 203.34M3 How can the field be formatted in vba to show 203.34 M (superscript)3 --- Message posted from http://www.ExcelForum.com/ . |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
special formatting? | Excel Worksheet Functions | |||
remove special character at end of string | Excel Discussion (Misc queries) | |||
How do you count (not sum) cells containing special formatting? | Excel Worksheet Functions | |||
Special cell formatting | Excel Discussion (Misc queries) | |||
Escape for special characters in string | Excel Programming |