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
varun_Is_Therevarun_Is_There 

validation error checklist

  • If  notice period checked to true, resignation date cannot be null.
Best Answer chosen by varun_Is_There
Parker EdelmannParker Edelmann
I assume that you want to create a Validation Rule. If you are getting an error message, that's not what I'm addressing.

Find the correct API names of the "notice period" and "resignation date" fields, and use a Validation Rule like this:
Notice_Period__c && ISBLANK(Resignation_Date__C)

Let me know if this helps. If not, please give me more information.

Thanks,
Parker Edelmann

All Answers

Parker EdelmannParker Edelmann
I assume that you want to create a Validation Rule. If you are getting an error message, that's not what I'm addressing.

Find the correct API names of the "notice period" and "resignation date" fields, and use a Validation Rule like this:
Notice_Period__c && ISBLANK(Resignation_Date__C)

Let me know if this helps. If not, please give me more information.

Thanks,
Parker Edelmann
This was selected as the best answer
varun_Is_Therevarun_Is_There
 HEY PARKER THANX I JUST SOLVE THE PROBLEM ALMOST THE WAY YOU SAID

Is_on_Notice_Period__c = TRUE && 
 ISBLANK (Resignation_Date__c )


THANX
VARUN
Parker EdelmannParker Edelmann
You're welcome! I'm glad that I could help! Could you please mark a best answer to mark this question as "Solved"? The button is by the "Flag" option.
varun_Is_Therevarun_Is_There
yes sure
Parker EdelmannParker Edelmann
Thanks, Varun. Let me know if there's anything else that I can do for you! You can find me here and on the Success Community.

Regards,
Parker