adding "NEW" to new records

Frantic

New member
Local time
Today, 22:30
Joined
Sep 11, 2002
Messages
5
Hi,

Another simple problem I just can't seem to figure out ...

I've got this report which shows records from one of my query's. There's a date of entry added to all the records. Now, I'd like to add "NEW" or maybe some flashy little picture (if possible) to records less than one week old.

Can someone solve this ?

Thanx !
 
Add a unbound Textbox to your form and call it NewText and then add the following into the OnCurrent Event for the Form:

If Me.CreateDate > (Date - 7) Then
Me.NewText = "NEW"
Else
End If
 
THX !!!
 

Users who are viewing this thread

Back
Top Bottom