Change Font colour in cells?

Zoe79

New Member
Joined
Jul 20, 2011
Messages
1
In each cell of column A I have individual names in red font, I want the names to turn black when I enter dates in the individual cells in column R, is this possible?
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Try conditional formatting for the cells in column A.
You'll need to use a formula along the lines of :=
=r1<>""
and then copy the formatting down.

You'll also need to set the format to use (i.e. black text) for when the condition is true.
 
Upvote 0
Try this: right click the sheet tab, select View Code and paste in

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 18 Then Target.Offset(, -17).Font.ColorIndex = xlAutomatic
End Sub
 
Upvote 0
try this formula


Excel Workbook
AB
19asdf
20wqer26/05/2010
21qer
Sheet3
Cells with Conditional Formatting
CellConditionCell FormatStop If True
A201. / Formula is =B$20=(TEXT(B$20,"dd/mm/yyyy"))+0Abc
 
Upvote 0

Forum statistics

Threads
1,224,592
Messages
6,179,787
Members
452,942
Latest member
VijayNewtoExcel

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