Hello All,
I have a report that I would like to place an asterick next to records that are over one year old.
I have created a text box that is unbound and in the control source I have placed this code:
When the report runs, it places an asterick next to everyones name. What am I missing?
I have a report that I would like to place an asterick next to records that are over one year old.
I have created a text box that is unbound and in the control source I have placed this code:
Code:
=IIf(DateDiff('yyyy',[L/D Start Date],Date())>=1,"*","")]
When the report runs, it places an asterick next to everyones name. What am I missing?