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
khushi Yadavkhushi Yadav 

If a user uses special character in a text field , then workflow of email alert will run

If there is any special characters in any text field then an email alert workflow rule will run
Rounak SharmaRounak Sharma
hi khushi,
You can try the below formulae for this or filter.
OR( 
contains( Domain__c, " "), 
contains( Domain__c, "#" ) 
)

Please let me know if it helps.
thanks
khushi Yadavkhushi Yadav
How to write this formulae please explain as there are many text fields and also we know there are many special characters
khushi Yadavkhushi Yadav
Solution :
OR
(NOT(CONTAINS( Address__c,"!,@,#,$,%,^,&,*,(,),~")),NOT(CONTAINS(First_name__c ,"!,@,#,$,%,^,&,*,(,),~")),NOT(CONTAINS( Full_Name__c ,"!,@,#,$,%,^,&,*,(,),~")),NOT(CONTAINS( Last_Name__c ,"!,@,#,$,%,^,&,*,(,),~")))
Rounak SharmaRounak Sharma
Hi khushi,
This is similar to the example I had suggested earlier. 
Mark the problem as solved so that others can also be benefitted.
Thanks
khushi Yadavkhushi Yadav
I still have error i dont get the exact solution