Why workflow automation matters
"The moment a deal over $50K moves into Negotiation, I want to know immediately. I don't want to find out at Monday's pipeline review, three days after it mattered most."
A "deal" (also called an Opportunity in SmartLite) is a potential sale you're tracking — a company that might buy from you. "Negotiation" is one stage in the process of closing that sale, where you and the customer are working out final terms.
A "pipeline review" is a regular meeting where a sales team looks at every deal in progress. Waiting for that meeting to hear big news is too slow.
Relying on a rep to remember to send an update breaks down once things get busy. Reps are focused on closing deals, not typing out status updates. Instead, the system should react to the data itself, automatically — that's what "workflow automation" means.
What's inside a workflow rule
A "record" is any single saved item in the CRM — one Lead, one Opportunity, one Contact. A "Workflow Rule" watches one type of record (called an "object," like Opportunity) for something to happen. When it does, the rule checks a set of conditions. If those conditions match, it runs one or more actions.
| Piece | What it means |
|---|---|
| Trigger event | When the rule should check: ON_CREATE (a new record is made), ON_UPDATE (an existing one changes), or ON_CREATE_UPDATE (either one) |
| Condition logic | ALL means every condition must be true. ANY means just one needs to be true. Either way, you're checking a list of field/comparison/value conditions — for example, "amount is greater than 50000" |
| Field Update action | Runs before the record is saved — it changes the record's data before it's written to the database |
| Email Alert / Notification / Webhook | Run after the record is saved — they never slow down or block the rep's save |
A rule that's turned off (inactive) is never checked at all. Toggling a rule off is a safe, instant way to pause automation without deleting your setup.
1 Alert the VP on a big deal
Let's build the rule Val Petrova asked for above. A "VP of Sales" is the executive who leads the whole sales team.
amount > 50000 AND stage = "Negotiation" — both must be true.priority__c field to "High" automatically whenever amount > 100000. Notice it applies instantly, before the record is even saved.Day-to-day: leadership and reps
Day-to-day: admins
Test what you learned
ANY mean?