I have it working for the year of 2019, however I was hoping to have this formula field look at any and all years and update this new field.
SO for example as it is now if the live-date__c is 3/6/2019 then the new field will auto populate with Q1. What I want to add is if live_date__c is 3/6/2018 I would like the new field to auto populate with Q1 as well. Right now I only have functionality for 2019.
Here is the formula... it is just a simple IF statement..
F(Live_Date__c <= DATE (2019,3,30), "Q1",
IF(Live_Date__c <= DATE (2019,6,30), "Q2",
IF(Live_Date__c <= DATE (2019,9,30), "Q3",
IF(Live_Date__c <= DATE (2019,12,30), "Q4","Please Set Live Date"))))
Thanks in advance!