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
Kazuhiro SuzukiKazuhiro Suzuki 

make text field non editable (read-only ) which is related to date field

how I can make text field non editable (read-only ) which is related to date field....
Then,After I input some value in date field, I would like to make text field editable
Pradeep SinghPradeep Singh
Hi, You should create validation rule in this case.
Abhik Modak 32Abhik Modak 32
You cant make the text field non-editable or Editable on the basis of date field. But you can create a validation rule not to save the record only with text field value when there is no value for the date field.
Something like :

Not(isblank(your text field))&&isblank(Your date field)