I am trying to nest two different IF functions for a column in my spreadsheet.
The first (the prioritized function) would display "quarterly" in column H if column F displays "AM"
the second would display one year from the date in column H, however; I do not want cells with no date in column H populating the default date, so I have this part of the function written IF(G18="","",DATE(YEAR(G18)+1,MONTH(G18),DAY(G18)))
I've been playing with this thing for a while (i'm still very new to excel) and no dice.
My best attempt is: =IF(F18="AM","QUARTERLY",IF(G18="","",DATE(YEAR(G18)+1,MONTH(G18),DAY(G18))))
Any suggestions?