<?xml version="1.0" encoding="UTF-8"?>
|
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
|
<fullName>Update_situation__c</fullName>
|
<externalId>false</externalId>
|
<formula>IF(
|
text(Year(Created_Day__c)) & text(Month(Created_Day__c)) =
|
text(Year(today())) & text(Month(today())),"本月创建",
|
|
IF(ISBLANK(Key_topic_last_update_date__c),"还没更新",
|
|
IF(
|
text(Year(Key_topic_last_update_date__c)) & text(Month(Key_topic_last_update_date__c)) =
|
text(Year(today())) & text(Month(today())),"本月更新",
|
|
IF(
|
text(Year(Key_topic_last_update_date__c)) & text(Month(Key_topic_last_update_date__c)) =
|
text(Year(today())) & text(Month(today())-1),"上个月更新",
|
|
"最近2个月没更新")
|
|
)
|
)
|
)</formula>
|
<formulaTreatBlanksAs>BlankAsZero</formulaTreatBlanksAs>
|
<label>更新情况</label>
|
<required>false</required>
|
<trackHistory>false</trackHistory>
|
<trackTrending>false</trackTrending>
|
<type>Text</type>
|
<unique>false</unique>
|
</CustomField>
|