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
sana240sana240 

Validation on Campaign creation/clone to notify user to select valid start date

I want to restrict the user to select valid start date when users clone campaign. Start date should be >= Today()

Can some one help with the rule?
Raj VakatiRaj Vakati
AND( ISCLONE() ,
CreatedDate  >=  Today()
)
sana240sana240
@Raja, Nope, this is not working. 
Raj VakatiRaj Vakati
AND( 
OR( ISCLONE() ,ISNEW()
) , 
CreatedDate  >=  Today()
)