Formula Help - calculating "between" dates

Hi All!

I’m trying to calculate a formula for conditional formatting. I’m sure this is easy, but what I tried isn’t working. I already have a row that calculates # of days between dates (Today()-thisRow.[Trial Start Date]), but I want to color-code based on duration. For example, I want:

<45 days = green (thisRow.[Trial Duration]<45)
>45 and <90 days = yellow
>90 days = red (thisRow.[Trial Duration]>90)

I got the first and last ones pretty easily, but that middle/yellow one I just can’t figure out the formula.

Thanks!

You’re probably overthinking it trying to pack it all into one complex statement :slight_smile:
Join 2 statements with AND

thisRow.[Trial Duration] >= 45 AND thisRow.[Trial Duration] <= 90

2 Likes

Yep. Overthinking it indeed. I think I just need to remember simple things like when to/not to put in parentheses, etc. I had something similar in concept, but it didn’t work due to formatting problems.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.