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
Ashim ChapagainAshim Chapagain 

use of ISBLANK AND ISCHANGED for the picklist value

I have to write a criteria for a process. the criteria is 
If the new opportunity is created OR
the Solution_Category__c isblank and ischanged 

can anyone help me in writing the formula for above criteria.

****** Solution_Category__c is a picklist******
Colton WehkingColton Wehking
Try 
OR(ISNEW(), AND(ISCHANGED([Opportunity].Solution_Category__c ), ISPICKVAL([Opportunity].Solution_Category__c , "")))