You need to sign in to do that
Don't have an account?

validation rule 1
if have check box called isEpicstory and filed called epic story
if user isspeic story (check box ) is true then epic story field should be empty ( user should not entery value need to restrict )
Regards
Shaker
if user isspeic story (check box ) is true then epic story field should be empty ( user should not entery value need to restrict )
Regards
Shaker
To make the Field read only for spacific condition using validation rule you have to create New Record Type with ready only Field.
Then you have to write a validation rule like below
IF( isEpicstory=True, $RecordType.Name = "New Read only Record Type name", $RecordType.Name = "Old record Type name")
hope this will helps you,
Thanks
karthik
Hello Shaker,
Try this one:
I hope it helps you.
Thanks,
Yogesh Sharma
You can use following validation rule to keep the other fields empty if checkbox is checked
IF( isEpicstory==true, epic_story__c <> NULL, NULL)
I hope this will help you,
Thanks,
Sukanya
isEpicstory = true && epic_story =! NULL,
Note: Dont use the if condtion in validation.
If this sloved your question, choose best ans,
Thanks,
Saravanan Sivalingam.
isEpicstory = true && epic_story != NULL,
Note: Dont use the if condtion in validation.
If this sloved your question, choose best ans,
Thanks,
Saravanan Sivalingam.