| 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
 | | <?xml version="1.0" encoding="UTF-8"?> |  | <CustomField xmlns="http://soap.sforce.com/2006/04/metadata"> |  |     <fullName>BudgetAmountNumber__c</fullName> |  |     <externalId>false</externalId> |  |     <formula>if(isblank(BudgetAmount1__c), 0,  |  | if(isnumber(BudgetAmount1__c), VALUE(BudgetAmount1__c),  |  | if(CONTAINS(BudgetAmount1__c, ','), VALUE(SUBSTITUTE(BudgetAmount1__c, ',', '')), 0) |  | )) +  |  | if(isblank(BudgetAmount2__c), 0,  |  | if(isnumber(BudgetAmount2__c), VALUE(BudgetAmount2__c),  |  | if(CONTAINS(BudgetAmount2__c, ','), VALUE(SUBSTITUTE(BudgetAmount2__c, ',', '')), 0) |  | )) +  |  | if(isblank(BudgetAmount3__c), 0,  |  | if(isnumber(BudgetAmount3__c), VALUE(BudgetAmount3__c),  |  | if(CONTAINS(BudgetAmount3__c, ','), VALUE(SUBSTITUTE(BudgetAmount3__c, ',', '')), 0) |  | )) +  |  | if(isblank(BudgetAmount4__c), 0,  |  | if(isnumber(BudgetAmount4__c), VALUE(BudgetAmount4__c),  |  | if(CONTAINS(BudgetAmount4__c, ','), VALUE(SUBSTITUTE(BudgetAmount4__c, ',', '')), 0) |  | )) +  |  | if(isblank(BudgetAmount5__c), 0,  |  | if(isnumber(BudgetAmount5__c), VALUE(BudgetAmount5__c),  |  | if(CONTAINS(BudgetAmount5__c, ','), VALUE(SUBSTITUTE(BudgetAmount5__c, ',', '')), 0) |  | ))</formula> |  |     <label>预算金额(数字)</label> |  |     <precision>18</precision> |  |     <required>false</required> |  |     <scale>2</scale> |  |     <trackHistory>false</trackHistory> |  |     <trackTrending>false</trackTrending> |  |     <type>Number</type> |  |     <unique>false</unique> |  | </CustomField> | 
 |