Hi all i'm attempting to have a column auto update a date column based on certain criteria and using If statements to do so. My only issue is that i'm trying to incorporate a 3rd IF statements as there are 3 levels of condition to apply. See formula below
=IF(Tier@row = 1, (IFERROR(DATE(YEAR([Last Updated]@row), MONTH([Last Updated]@row) + 3, DAY([Last Updated]@row)), DATE(YEAR([Last Updated]@row) + 1, MONTH([Last Updated]@row) - 3, DAY([Last Updated]@row)))), IF(Tier@row = 3, (IFERROR(DATE(YEAR([Last Updated]@row), MONTH([Last Updated]@row) + 12, DAY([Last Updated]@row)), DATE(YEAR([Last Updated]@row) + 1, MONTH([Last Updated]@row), DAY([Last Updated]@row)))))),IF(Tier@row = 2, (IFERROR(DATE(YEAR([Last Updated]@row), MONTH([Last Updated]@row) + 6, DAY([Last Updated]@row)), DATE(YEAR([Last Updated]@row) + 1, MONTH([Last Updated]@row) - 6, DAY([Last Updated]@row))))))
I'm ok when entering up to 2 since the IF function has the otherwise portion but i'm confused as to what function I should use to get the 3rd part in. Not too knowledgeable on nest IF statements