Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have Range O2:O100 and P2:P100. The following code
looks in Range P2:P100 and if it finds a % in the value, will offset into the corresponding cell in Range O2:O100 and format the cell with a "%". What I would like instead is instead of formatting the cell with a "%", to put the % character in the cell itself. Dim c As Range For Each c In Range("O2:O100") If InStr(1, c.Offset(, 1).NumberFormat, "%") Then c.NumberFormat = c.Offset(, 1).NumberFormat Else c.NumberFormat = "" End If Next |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
split post code (zip code) out of cell that includes full address | Excel Discussion (Misc queries) | |||
Code to conditional format all black after date specified in code? | Excel Discussion (Misc queries) | |||
Drop Down/List w/Code and Definition, only code entered when selec | Excel Worksheet Functions | |||
Convert a Number Code to a Text Code | Excel Discussion (Misc queries) | |||
copying vba code to a standard code module | Excel Discussion (Misc queries) |