Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

Date Calculation

Hello,    I need to do a something like "IF" with dates, for example:    Status = If( date between "2022-10-15" and "2022-10-18", "1",                     If( date between "2022-10-19" and "2022...
  • lukiz84's avatar
    3 years ago
    Status = If( date >= DATEVALUE("2022-10-15") && date <= DATEVALUE("2022-10-18"), "1",
    ...