1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  | <?xml version="1.0" encoding="UTF-8"?> 
 |  <CustomField xmlns="http://soap.sforce.com/2006/04/metadata"> 
 |      <fullName>Caluculated_start_day__c</fullName> 
 |      <externalId>false</externalId> 
 |      <formula>IF( 
 |   MONTH(Today())=12, 
 |   IF( 
 |    Reported_Date__c  >= DATE(YEAR(today()),01,01), 
 |    1, 
 |    0 
 |   ), 
 |   IF( Reported_Date__c  >= DATE(YEAR(today())-1,MONTH(Today())+1,01), 
 |   1, 
 |   0 
 |   ) 
 |  )</formula> 
 |      <label>统计开始日(1年前)</label> 
 |      <precision>18</precision> 
 |      <required>false</required> 
 |      <scale>0</scale> 
 |      <trackHistory>false</trackHistory> 
 |      <trackTrending>false</trackTrending> 
 |      <type>Number</type> 
 |      <unique>false</unique> 
 |  </CustomField> 
 |  
  |