Skip to main content
Does anyone know of a formula that will be able to display a 1 if a picklist value is a specific value and today is older than 30 days based on the last modified 

 

The calculation 

 

IF (ISPICKVAL(Field x,"VALUE1"),

 

Last modified + 30 is greater than today

 

(1 to be shown if 30 days after the last modified date is prior to todays date, 0 if 30 days after last modified is post today)
6 risposte
  1. 22 mar 2017, 11:57
    Like this?

     

     

    IF (

    AND(

    TEXT(Field x+ ="VALUE1",

    (DATEVALUE(LastModifiedDate) + 30) < TODAY())), 1,

    0)

     

     
0/9000