Forum Discussion

JohnJohn's avatar
JohnJohn
Qrew Trainee
8 years ago

I'm trying to create a report that colors a row red if a date field has a date past 9 days

I'm trying to create a report that colors a row red if a date field has a date past 9 days - If ([Date Released for Inspection]> days+(9) ,"red","")
  • MCFNeil's avatar
    MCFNeil
    Qrew Captain
    if more than 9 days in the future:
     If ([Date Released for Inspection]> Today()+Days(9) , "red", "")

    if less than 9 days in the past:
    If ([Date Released for Inspection]< Today()-Days(9) , "red", "")
    • MCFNeil's avatar
      MCFNeil
      Qrew Captain
      I like "pink", its a soft red that translates well to reports.
    • JohnJohn's avatar
      JohnJohn
      Qrew Trainee
      Thanks... the color was not so much the answer I need. I need the formula to make that happen when the dated released for inspection is past 9 days.
      Thank you