I will try to explain as best I can
I have a continuous form displying multiple records. There is a text field formated for a medium date which displays the date the record was last updated. I want to make it so if this date is 5 days old that the back color of this field will change to yellow for that record and not the entire record set. I have tried the following code I found in a similar thred in the forms Load event but it changes all of the records in the record set regardless of date.
If ((Date > (Me.txtLastUp + 5))) Then
Me.txtLastUp.BackColor = vbYellow
Any Help would be greatly appreciated.
I have a continuous form displying multiple records. There is a text field formated for a medium date which displays the date the record was last updated. I want to make it so if this date is 5 days old that the back color of this field will change to yellow for that record and not the entire record set. I have tried the following code I found in a similar thred in the forms Load event but it changes all of the records in the record set regardless of date.
If ((Date > (Me.txtLastUp + 5))) Then
Me.txtLastUp.BackColor = vbYellow
Any Help would be greatly appreciated.