Skip to main content

SF-0108 · Scenario · Easy

Can we create more than one workflow for an object?

✓ Verified by Vikas Singhal · Last reviewed 5/17/2026 · Updated for Spring '26

Yes — Salesforce allows you to create many workflow rules on a single object. The limits are generous, and each rule evaluates independently when a record is saved.

The numbers

LimitValue
Active rules per object50
Total rules per object (active + inactive)500
Workflow rules per org (across all objects)2,000
Workflow rules per object including approval stepsshares pool with approvals

These caps are high enough that the limit is rarely the issue. The real issue is manageability.

The order of execution within multiple rules

When a record saves and multiple rules on the same object pass their criteria, all of their actions are pooled, and then the platform fires them in the action-type order:

  1. All field updates from all rules
  2. All tasks
  3. All email alerts
  4. All outbound messages

There’s no defined order among rules of the same type. If two rules both want to set the same field, the result is undefined — Salesforce will pick one, and you don’t get to choose which.

When too many workflows hurts

Having 30 workflow rules on one object is technically allowed but is a maintenance nightmare:

  • Debugging is painful — when a record changes unexpectedly, you have to read every rule to find which one did it
  • Field-update conflicts are common — rules step on each other
  • Order-of-execution surprises when a field update re-triggers other rules

This is one of the reasons Salesforce pushed toward Process Builder (one process per object, with branches) and then Flow (record-triggered flow can be ordered explicitly via the trigger order setting).

The 2026 best practice

  • One Record-Triggered Flow per object per timing (before-save vs after-save), with explicit branching inside
  • Use the Trigger Order number to control which flows run first
  • Migrate legacy workflow rules to Flow using Setup → Migrate to Flow

What interviewers want

  • A clean “yes, up to 50 active per object”
  • Awareness that order among rules of the same type isn’t guaranteed
  • A note on the maintainability cost — and why Flow consolidates this

Verified against: Salesforce Help — Workflow Considerations. Last reviewed 2026-05-17 for Spring ‘26 release.