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
mariappangomathirajmariappangomathiraj 

rich text area

hai......... if u have any possible to check the values of rich text area is null or not in any standard or costom object?

alok29novalok29nov

Hi,

 

Rich text area is supported in salesforce but with this limitation  "When a rich text area field is used in a formula, the HTML tags are stripped out before the formula is run. For example, when a rich text area field is used in a validation rule's criteria, the HTML tags are removed before the evaluation."

 

Thanks

Alok

Saravanan @CreationSaravanan @Creation

Hi,

 

you can write like this in the validation rule.

 

For null of rich text area:

 

IF( book_image__c ==Null,true,false)

 

For  not null of rich text area:

IF( book_image__c <>Null,true,false)

 

 

If this post is answer your question than mark  it as answer.