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

How to erase value from text field while updating record ?
Hi All,
How to erase value from text field while updating record?
Reauirement :
i have one text field, while creating a record it is required field and while updating same record, i would be erase value from text field.?
please let me know how can i achive this .Give me example code also.
Thanks in advance.
China
How to erase value from text field while updating record?
Reauirement :
i have one text field, while creating a record it is required field and while updating same record, i would be erase value from text field.?
please let me know how can i achive this .Give me example code also.
Thanks in advance.
China
Write a validation rule on insert
AND(Isnew(),ISBLANK(Your_field__C))
Thanks
Anil.B
You can use below code for your requirement. On lead insert, it make the City mandatory and on lead update, it will blank out the value from City.