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
WPCMSWPCMS 

Workflow Issue: Isblank(Meeting_Date__c)=False

I am trying to update a field when the Meeting Date is entered. I have my workflow criteria to

 

isblank(Meeting_Date__c) = False

 

And I tried

 

isnull(Meeting_Date__c) = False

 

My workflow will not trigger.

 

Any ideas?

Best Answer chosen by Admin (Salesforce Developers) 
Steve :-/Steve :-/

Try 

NOT(ISBLANK(Meeting_Date__c))

 or use the Filter Criteria editor instead of the Formula Wizard and select

 

Field: Meeting Date  

operator: [not equal to]  

value: <blank>

All Answers

Steve :-/Steve :-/

Try 

NOT(ISBLANK(Meeting_Date__c))

 or use the Filter Criteria editor instead of the Formula Wizard and select

 

Field: Meeting Date  

operator: [not equal to]  

value: <blank>

This was selected as the best answer
RArunrajRArunraj

Hi,

 

Below is the Formula

 

If ( isblank( Meeting_Date__c ) ,'meeting Date is blank', 'meeting Date is not blank' )

 

 

Thanks,

Arunraj

Steve :-/Steve :-/

@  Did either of these work for you or do you still need help?

Steve :-/Steve :-/

@WPCMS can you let us know if you're all set or not?

Steve :-/Steve :-/

are you all set  or do you still need help with this?