Skip to main content
Olivia Forde (Lifes2good) 님이 #Sales And Marketing에 질문했습니다
I want to add a formula field to an opportunity show a colur when the Stage chages - is there something similar to ISCHANGED availabel for fields
답변 13개
  1. 2015년 3월 19일 오전 11:53
    You'll do this with 3 steps:

     

    1) create a custom Date field to capture the date of the most recent Stage change.  

     

    2) create a Workflow Rule Field Update that runs on 'every edit' when ISCHANGED(StageName) and sets the custom Date field from #1 above to TODAY()

     

    3) create a custom formula text field to display your flag:

     

    IF( TODAY() - dateStageChanged__c > 14,

     

    IMAGE ( "/img/samples/flag_red.gif","Red"),

     

    IF( TODAY() - dateStageChanged__c > 6,

     

    IMAGE("/img/samples/flag_yellow.gif","Yellow"),

     

    IMAGE ( "/img/samples/flag_green.gif","Green"))

     

    )

     

     
0/9000