Skip to main content
Kelly Javanmardi (Fleetsmith) 님이 #Data Management에 질문했습니다
I have the following formula: BLANKVALUE(Opportunity.Funnel_Stage_Name__c, Lead.Lead_Status_2__c)

 

I was wondering if there is a way to enforce the order of the values that the formula returns, as the basic values are only able to be sorted alphabetically in the Salesforce report!
답변 1개
  1. 2019년 10월 14일 오후 6:05
    Hi Kelly

     

    The only way I can think of is to create an auto number field.

     

    Format:{0}

     

    Starting number: 1

     

    And make sure you select the box to update old records.

     

    Then you could change your formula like so

     

    AutoNumberField__c&' - '& BLANKVALUE(Opportunity.Funnel_Stage_Name__c, Lead.Lead_Status_2__c)

     

    Now, if you sort your report by that column, you can sort from the oldest or newest record, but that implies that is the order you want.
0/9000