function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Hadeel MamdouhHadeel Mamdouh 

Checkbox formula if field number increased by a certain percentage at a certain stage

Hello, 

I want to create a checkbox to evaluate whether the number field called Days to Close has increased by 60% or more during the Follow-up stage only:
AND( ISPICKVAL ( StageName, "Follow-up"),)  Days_to_Close__c   = > 0.6)

What's wrong with the formula?
Best Answer chosen by Hadeel Mamdouh
Steven NsubugaSteven Nsubuga
AND( ISPICKVAL ( StageName, "Follow-up"),  Days_to_Close__c >= 0.6)

 

All Answers

Steven NsubugaSteven Nsubuga
AND( ISPICKVAL ( StageName, "Follow-up"),  Days_to_Close__c >= 0.6)

 
This was selected as the best answer
Hadeel MamdouhHadeel Mamdouh
Thank you Steven!