Hi Pete. Yes, that's what my line looks like, I didn't replace the whole line with just that piece of code!
So applying that to the sheet, the only date being bolded is down the bottom of the sheet, 23/12/2015. Hmmm.....
Todays date, tomorrows date etc is still in unbolded font.
However I have just noticed that if I manually change the date on one of the rows to within the next 14 days, it changes the cell above it to bold? Weird.
There is one conditional statement before that in the macro to bold anything previous to todays date, perhaps that is interfering?
Range("A2").Select
Range(Selection, Selection.End(xlToRight)).Select
Range(Selection, Selection.End(xlDown)).Select
Selection.FormatConditions.Add Type:=xlExpression, Formula1:="=$M2<TODAY()"
Selection.FormatConditions(Selection.FormatConditions.Count).SetFirstPriority
With Selection.FormatConditions(1).Interior
.PatternColorIndex = xlAutomatic
.Color = -16776961
.TintAndShade = 0
Bookmarks