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
TeddyAble1TeddyAble1 

Rule Criteria Question

Hi All 

Im trying to set a workflow rule criteria using the formula.

Im trying to check in contact standard object that if Course__C (which is a llook up of the course custom object) if it contains the lookup  (that is its not blank, then the workflow should be triggered

how do i go about this?
Best Answer chosen by TeddyAble1
Amit Chaudhary 8Amit Chaudhary 8
Try below in your workflow formula
Course__C  != null

All Answers

Amit Chaudhary 8Amit Chaudhary 8
Try below in your workflow formula
Course__C  != null
This was selected as the best answer
TeddyAble1TeddyAble1
Thank you Amit 

That was what i was after

Regards