收藏Davina Hanchuck (SGI, Tampa User Group Co-Leader) 提问于 #Data Management2011年7月20日 18:11Formula Help - Assign a number value to a dateTrying to create a formula field that will assign a value of 1 to my members with a join date greater than 1/1/2011, so I can run a report for a total count. 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 个回答排序按日期排序按最有帮助排序按日期排序加载更多评论...已采纳的回答Steve Molis (You Owe Me a Beer, Inc.)2011年7月20日 18:26Another option would be something like this: IF(YEAR( Join_Date__c ) >= 2011,1,0)添加评论撰写回答...粗体斜体下划线删除线项目符号列表编号列表添加链接代码块插入图像附加文件链接 URL取消保存0/9000回复
已采纳的回答Steve Molis (You Owe Me a Beer, Inc.)2011年7月20日 18:26Another option would be something like this: IF(YEAR( Join_Date__c ) >= 2011,1,0)