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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
| <?xml version="1.0" encoding="UTF-8"?>
| <CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
| <fullName>annualENGAverageCoverageRate__c</fullName>
| <externalId>false</externalId>
| <formula>if( Year(today()) > OCSMYear__c + 1 || Year(today()) > OCSMYear__c && MONTH(today()) > 3, (MonthVisitCoverageRate4_ENG_Text__c + MonthVisitCoverageRate5_ENG_Text__c+ MonthVisitCoverageRate6_ENG_Text__c+ MonthVisitCoverageRate7_ENG_Text__c+ MonthVisitCoverageRate8_ENG_Text__c+ MonthVisitCoverageRate9_ENG_Text__c+ MonthVisitCoverageRate10_ENG_Text__c+ MonthVisitCoverageRate11_ENG_Text__c+ MonthVisitCoverageRate12_ENG_Text__c+ MonthVisitCoverageRate1_ENG_Text__c+ MonthVisitCoverageRate2_ENG_Text__c+ MonthVisitCoverageRate3_ENG_Text__c)/12,
| if( MONTH(today()) = 4, 0
| ,
| (MonthVisitCoverageRate4_ENG_Text__c
| +
| if(if(MONTH(today())-4< 0, MONTH(today())+8, MONTH(today())-4)> 1,MonthVisitCoverageRate5_ENG_Text__c ,0)
| +
| if(if(MONTH(today())-4< 0, MONTH(today())+8, MONTH(today())-4)> 2,MonthVisitCoverageRate6_ENG_Text__c ,0)
| +
| if(if(MONTH(today())-4< 0, MONTH(today())+8, MONTH(today())-4)> 3,MonthVisitCoverageRate7_ENG_Text__c ,0)
| +
| if(if(MONTH(today())-4< 0, MONTH(today())+8, MONTH(today())-4)> 4,MonthVisitCoverageRate8_ENG_Text__c ,0)
| +
| if(if(MONTH(today())-4< 0, MONTH(today())+8, MONTH(today())-4)> 5,MonthVisitCoverageRate9_ENG_Text__c ,0)
| +
| if(if(MONTH(today())-4< 0, MONTH(today())+8, MONTH(today())-4)> 6,MonthVisitCoverageRate10_ENG_Text__c ,0)
| +
| if(if(MONTH(today())-4< 0, MONTH(today())+8, MONTH(today())-4)> 7,MonthVisitCoverageRate11_ENG_Text__c ,0)
| +
| if(if(MONTH(today())-4< 0, MONTH(today())+8, MONTH(today())-4)> 8,MonthVisitCoverageRate12_ENG_Text__c ,0)
| +
| if(if(MONTH(today())-4< 0, MONTH(today())+8, MONTH(today())-4)> 9,MonthVisitCoverageRate1_ENG_Text__c ,0)
| +
| if(if(MONTH(today())-4< 0, MONTH(today())+8, MONTH(today())-4)> 10,MonthVisitCoverageRate2_ENG_Text__c ,0)
| )
| /if(MONTH(today())-4< 0, MONTH(today())+8, MONTH(today())-4)
| ))</formula>
| <formulaTreatBlanksAs>BlankAsZero</formulaTreatBlanksAs>
| <label>覆盖率(平均能量)</label>
| <precision>18</precision>
| <required>false</required>
| <scale>0</scale>
| <trackTrending>false</trackTrending>
| <type>Percent</type>
| </CustomField>
|
|