I am trying to create a nested IF statement to look at a cell and do 3 things:
1. look to see if cell is blank, if so leave blank,
2. date in cell- todays date is < 30 print" DUE" in cell.
3. look to see if cell has NA typed in the cell, if so leave blank
My code works in terms of the blank, and print DUE, but I get #value! when source cell has NA.
Please help!!
=IF(AND('[EUCOM Revised SEMA Training Matrix 20220219.xlsx]Conditional '!$AB9=""),"", IF(AND('[EUCOM Revised SEMA Training Matrix 20220219.xlsx]Conditional '!$AB9-TODAY()<30), "Due", IF(AND('[EUCOM Revised SEMA Training Matrix 20220219.xlsx]Conditional '!$AB9<>""),"")))
1. look to see if cell is blank, if so leave blank,
2. date in cell- todays date is < 30 print" DUE" in cell.
3. look to see if cell has NA typed in the cell, if so leave blank
My code works in terms of the blank, and print DUE, but I get #value! when source cell has NA.
Please help!!
=IF(AND('[EUCOM Revised SEMA Training Matrix 20220219.xlsx]Conditional '!$AB9=""),"", IF(AND('[EUCOM Revised SEMA Training Matrix 20220219.xlsx]Conditional '!$AB9-TODAY()<30), "Due", IF(AND('[EUCOM Revised SEMA Training Matrix 20220219.xlsx]Conditional '!$AB9<>""),"")))