Sorry, if possible, I'd also like to update the formula to calculate the number of weekdays between the two dates.
I tried:
WeekdaySub([Last Day],[Date Manager Entered])
...but I get the error message that it's "expecting date but found number." However, both those fields are date as well as the formula.
So ultimately I'm looking to update below formula to calculate the number of weekdays between "Date Manager Entered" and "Last Day" as well as make the ones that come out with the answer "No" red font.
IF(
IsNull([Date Manager Entered]),"", // if empty, then result is empty quotes.
// else we know there us a date
ToDays([Date Manager Entered]-[Last Day]) < 5, "No", "Yes")
Thank you so much!
Regards,
Valerie