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
MaheemSamMaheemSam 

When lead is converted, opportunity validation keeps firing even when NOT(ISNEW()) is used inside the validation.

Hi, 
   
   Below is the validation in opportunity when a new lead is converted it keeps firing, We have used NOT(ISNEW()) function but still while creating a new opportunity from lead convertion this validation keeps firiing please suggest how to fix this issue. 
AND(
NOT(ISPICKVAL(Deal_Type__c, "Renewal")),
ISBLANK( TEXT( Operational_Technology_Opportunity__c )),   RecordTypeId  <> "01280000000UNnc",
RecordTypeId  <> "0123000000009UT",
RecordTypeId  <> "0123400000047wC",
NOT(ISPICKVAL(StageName, "Pending Initial Meeting")),  
$User.Id <> "005300000011QKX",
NOT(ISNEW())
)

Thanks
Sudhir