On my report, I want rows with expired dates to stand out by having their borders thicker.  Something like:
	
	
	
		
When I do that, it ends up formatting every txtDate field in the report if one of them passes the If criteria instead of only ones that are expired.
Any help guys?
 
		Code:
	
	
	If Me.txtDate < Date() Then
     Me.txtDate.BorderWidth = 6
End If
	When I do that, it ends up formatting every txtDate field in the report if one of them passes the If criteria instead of only ones that are expired.
Any help guys?