How about this one?
For Each cl In Rng
If format(cl.Value, "dd/mm/yy") = "21/03/06" Then
cl.EntireRow.Font.bold = True
End If
Next
Frederick Chow
Hong Kong
> Below is a small bit of code that will make a row bold depending on a
> value in column Q.
[quoted text clipped - 26 lines]
> Thanks Very much
> End Sub
Odysseus - 22 Mar 2006 13:28 GMT
Thanks, that part worked a treat. Though I now need to make the date
varialbe to be enterd into Cell A1. I tried the just sticking in A
that didn't work so I tryied the below, that also didn't work.
Am I on the right track or am I way off here ?
For Each cl In Rng
If Format(cl.Value, "dd/mm/yy") = Format("A1", "dd/mm/yy") Then
cl.EntireRow.Font.bold = Tru