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
minnuchcloud@gmail.comminnuchcloud@gmail.com 

close date should be feature date but should not be in current month of current year

sfdcttslsfdcttsl

Build a validation rule giving the below criteria in Error condition Formula

 

MONTH(CloseDate) ==(MONTH(TODAY()))

 

 

Please try this....

phiberoptikphiberoptik
AND(

MONTH(CloseDate) = MONTH(TODAY()),

YEAR(CloseDate) = YEAR(TODAY())

)

 Actually, try the above in a validation rule, since you said it cannot be the current month of the current year.