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
Danny_SpyDanny_Spy 

Picklist value should be updated when a value is changed

Hello All,

 

Can somebody help me pleaseeeeeeeeeee............???

 

Problem -

if someone enters Number__c then Company__c should become as required..... But the problem here is Company__c is a Picklist value.

 

Validation Rule -

ISCHANGED( Number__c ) && (isblank(Company__c))

 

 

Error: Field Company__c is a picklist field. Picklist fields are only supported in certain functions.

 

Thanks,

Dan 

Best Answer chosen by Admin (Salesforce Developers) 
SargeSarge

Hi Dan,

 

   Try the following

 

ISCHANGED( AADD_Booking_Amount__c ) && (isblank(TEXT(Company__c)))

 

 

 

 

All Answers

SargeSarge

Hi Dan,

 

   Try the following

 

ISCHANGED( AADD_Booking_Amount__c ) && (isblank(TEXT(Company__c)))

 

 

 

 

This was selected as the best answer
Danny_SpyDanny_Spy

Sooper it worked for me.......................