On Wed, 15 Feb 2006 09:17:28 -0800, Adrian
<(E-Mail Removed)> wrote:
>We have a database of names, addresses, dates, phone #'s, etc. I want the
>report to italicize or color the names that have been entered in the last
>month.
>
>This is in Access
You can create a Form or Report based on the table (or on a query
using the table); in that Form select Format... Conditional Formatting
on the textboxes that you would like highlighted. Use a condition of
[EntryDate] > DateAdd("m", -1, Date())
to choose which records to display differently.
John W. Vinson[MVP]
|