Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Some cells contains "/" (ie: Ford / Toyota)
I would like to have all the text after the slash in bold. Is there a code to bold a variable size text after the slash? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Bob,
Try something like With ActiveCell iPos = InStr(1, .Value, "/") .Characters(iPos + 1, 99).Font.Bold = True End With -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "BOB" wrote in message ... Some cells contains "/" (ie: Ford / Toyota) I would like to have all the text after the slash in bold. Is there a code to bold a variable size text after the slash? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Fantastic!!!
Thanks -----Original Message----- Hi Bob, Try something like With ActiveCell iPos = InStr(1, .Value, "/") .Characters(iPos + 1, 99).Font.Bold = True End With -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "BOB" wrote in message ... Some cells contains "/" (ie: Ford / Toyota) I would like to have all the text after the slash in bold. Is there a code to bold a variable size text after the slash? . |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Lock Cell Format - Allow copy and paste of data without format change | Excel Worksheet Functions | |||
cell format - remove cell format pattern without effecting colors | Excel Discussion (Misc queries) | |||
Can cell format come from and change with reference cell format | Excel Discussion (Misc queries) | |||
Custom Cell format to mimic time format | Excel Discussion (Misc queries) | |||
How do I copy data in single cell format to a merged cell format | Excel Discussion (Misc queries) |