Column Formula issue

HI all! I'm wondering why "#invalid data type" is showing after i convert this to a column formula, despite there being no date in the "Date-Reserve" column for it to pull from? I would expect it to be blank. I tried clearing the contents of those cells but it didn't seem to change the issue.

Best Answer

  • Carson Penticuff
    Carson Penticuff ✭✭✭✭✭✭
    Answer ✓

    Give this a try:

    =IF(ISDATE([Date-Reserve]@row), IF(AND(MONTH([Date-Reserve]@row) >= 7, MONTH([Date-Reserve]@row) <= 9), "Q1", IF(AND(MONTH([Date-Reserve]@row) >= 10, MONTH([Date-Reserve]@row) <= 12), "Q2", IF(AND(MONTH([Date-Reserve]@row) >= 1, MONTH([Date-Reserve]@row) <= 3), "Q3", "Q4"))), "")

Answers