Format individual characters when length exceeds X

detriez

Board Regular
Joined
Sep 13, 2011
Messages
193
Office Version
  1. 365
Platform
  1. Windows
Cell B2 has a numeric value= 5
Cell A2 has text with 12 characters
Looking to a way to format the font for characters in 6,7,8,9,10,11,12 in cell A2 to red

I can only find a way to conditionally formatting for the entire cell
 
Last edited:

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
Do a macro recording and you'll get the code.
 
Upvote 0
Cell B2 has a numeric value= 5
Cell A2 has text with 12 characters
Looking to a way to format the font for characters in 6,7,8,9,10,11,12 in cell A2 to red
Give this macro a try...
Code:
[table="width: 500"]
[tr]
	[td]Sub ColorExcessTextInCellA2()
  Range("A2").Font.Color = vbBlack
  Range("A2").Characters(Range("B2").Value + 1, 99).Font.Color = vbRed
End Sub[/td]
[/tr]
[/table]
 
Upvote 0

Forum statistics

Threads
1,215,473
Messages
6,125,020
Members
449,203
Latest member
tungnmqn90

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top