Well, you probably wouldn't put it in the control source...
like i originally suggested, how about making a lable
with the text "new" in the right spot, then click on
the background of the section it resides, choose
events, onformat event, code (rather than macro),
then place code something like this in the function
it builds:
if (IF DateDiff("d", <textbox holding date val>, Now()) > 5) then
<labelname>.visible = false
else
<labelname>.visible = true
end if
doublecheck datediff's definition in the help files
to make sure it's the same as the sql one you're
used to (probably is, but i'm not at my usual
computer right now to verify this myself)
-g