Forum Discussion

jesswillerton's avatar
jesswillerton
Copper Contributor
Sep 20, 2024

Cell value based on if it contains text, or if it contains a date, how the date relates to today

Hi all I'm having problems writing a formula for this spreadsheet. The purpose is to show when a project needs to be sent. Each project has a deadline (column H), but some projects have a date they ...
  • Lorenzo's avatar
    Sep 20, 2024

    Hi jesswillerton 

     

     

    In K14:

    =IFS(
      ISTEXT(J14),      J14,
      J14 < C$2,        H$2,
      J14 = C$2,        H$3,
      (J14 - C$2) < 4,  H$4,
      (J14 - C$2) < 8,  H$5,
      TRUE,             H$6
    )

Resources