1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| <?xml version="1.0" encoding="UTF-8"?>
| <CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
| <fullName>Plan_Term_New__c</fullName>
| <description>'FY'&Text(Year(addMonths(Today(), -3))+1 )
| + IF(AND(Month(Today()) >= 3, Month(Today()) < 9), " 1H’", " 2H’")</description>
| <externalId>false</externalId>
| <formula>if((YEAR(addMonths(Today(), -3))<=2021 && MONTH(addMonths(Today(), -3))<=3),TEXT(YEAR(addMonths(Today(), -3))-1868)+'P'&
| IF(OR(month(addMonths(Today(), -3)) <=3, month(addMonths(Today(), -3)) >=10), "A", "B"),
| if((YEAR(addMonths(Today(), -3))<2021 && MONTH(addMonths(Today(), -3))>3),TEXT(YEAR(addMonths(Today(), -3))-1867)+'P'&
| IF(OR(month(addMonths(Today(), -3)) <=3, month(addMonths(Today(), -3)) >=10), "A", "B"),
| (if((YEAR(addMonths(Today(), -3))>=2021 && MONTH(addMonths(Today(), -3))>3),'FY'&TEXT(YEAR(addMonths(Today(), -3))+1),'FY'&TEXT(YEAR(addMonths(Today(), -3))))&
| IF(OR(month(addMonths(Today(), -3)) <=3, month(addMonths(Today(), -3)) >=10), " 1H’", " 2H’")
| )
| )
| )</formula>
| <formulaTreatBlanksAs>BlankAsZero</formulaTreatBlanksAs>
| <label>ET_APP专用_计画财年</label>
| <required>false</required>
| <trackHistory>false</trackHistory>
| <type>Text</type>
| <unique>false</unique>
| </CustomField>
|
|