
1 risposta
Hello Ivan,First- Create a formula field on the OpportunityName this something like "CloseDatewithAmount"Formula field will be a number field with 2 decimalsUse the following formula:VALUE(text(YEAR(CloseDate)) & IF(LEN(text(MONTH(CloseDate))) = 1, "0" & TEXT(MONTH(CloseDate)), TEXT(MONTH(CloseDate))) & IF(LEN(text(DAY(CloseDate))) = 1, "0" & TEXT(DAY(CloseDate)), TEXT(DAY(CloseDate))) & LPAD(TEXT( Amount ), 10, '0')if full amount, otherwise: LPAD(TEXT(ROUND(test_number__c,0) ), 10, '0') if decimal point.RegardsAlain