I have a Report which is used to track “open” and “overdue” projects. The underlying Query Criteria is based on measuring the “Actual Close Date” against the “Target Date”. It only returns records based on if the “Actual Close Date” is open (Null), or if it past the “Target Date”. Here is the criteria I defined in the query:
Is Null Or >[TargetDate]
The Report works fine, however the Users of the Report want it more, shall I say, colorful. They want the Open (null), or Closed past the defined Target Date to “stand out” in the report. The idea is either make the control Border thickness greater, such as 2 or 3, and/or make it colored, such as red, for printed copies.
I have tried to place the same sort of coding as mentioned above in the OnOpen, and OnActive properties of the Report, along with code to change the Border weight and color. Naturally I am asking for assistance since it does not work.
Am I traveling down the right path here, or do Reports act differently then say Forms? I thought of using a Form for a report, but it is not going to meet the sorting & grouping requirements I need.
As always, thank you in advance for your help.