This is the formula I have, but I keep getting an error:
IF( Join_Date__c >= "01/01/2011"), 1, 0)
Any help is appreciated!
4 Antworten
Another option would be something like this:
IF(YEAR( Join_Date__c ) >= 2011,1,0)
This is the formula I have, but I keep getting an error:
IF( Join_Date__c >= "01/01/2011"), 1, 0)
Any help is appreciated!
IF(YEAR( Join_Date__c ) >= 2011,1,0)