Conditionaly Highlight an Expiry Date in a Form that is Due in 40 Days

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • cokenorris
    New Member
    • Jul 2014
    • 1

    Conditionaly Highlight an Expiry Date in a Form that is Due in 40 Days

    How can I set the above, and create a report for all dates in a database that are due in 40 days?
  • twinnyfo
    Recognized Expert Moderator Specialist
    • Nov 2011
    • 3653

    #2
    What have you tried so far? Exactly what is it that you are looking for, because it looks like you are asking for two different things: One is a report for dates meeting that criterion, the other is conditionally formatting a date.

    It is confusing as to exactly which you are asking for.

    Comment

    • NeoPa
      Recognized Expert Moderator MVP
      • Oct 2006
      • 32636

      #3
      Start by adding a calculated field into your query such as :
      Code:
      (DateAdd('d',40,Date())>[DueDate]) AS [NearlyDue]
      Using Conditional Formatting is a matter of selecting it from the menu or ribbon and configuring it. You can use [NearlyDue] in your criteria.

      Comment

      Working...