Workflow recipe

Send high-budget Google Forms leads to Slack instantly

Route enterprise-budget leads to a senior-rep channel the moment they hit the threshold. Distinct routing rule, distinct template, AE mention, idempotent retries. The setup that catches the deals worth chasing.

  • Budget-threshold routing in one rule
  • Senior-rep mention + SLA reminder
  • Falls back to standard pipeline below the threshold
TL;DR

The five-line summary

  1. Add a budget field to the Google Form (free-text or dropdown).
  2. Routing rule: IF Budget > $10000 → #hot-leads (or contains-match for dropdown).
  3. Template overrides the default: mention the AE, lead with budget, quote-block the qualifying context.
  4. Default rule sends everything below the threshold to your standard #new-leads channel, no lead falls through.
  5. Free plan covers 30 responses/month so you can validate the rule with real submissions before paying.
Example

What the Slack message looks like

:rotating_light: *High-budget lead* — $45,000 ACV
<@U01ABCXYZ>, reply within 5 minutes

*Acme Corp* · Jane Doe · jane@acme.com

> Use case: replacing Hubspot for a 200-seat sales org
> Timeline: signing this quarter
> Current solution: Salesforce + manual lead routing

<https://crm.example/leads/12345|Open in CRM →>

Header: budget on line 1. AE mention + SLA on line 2. Company + contact on line 3. Qualifying context in a quote block, scannable, not a wall of Q&A. CRM link as the action.

Setup

The routing rule, line by line

  1. 1
    Add a budget question to the Google Form
    Free-text (“Approved budget”) or dropdown (“Under $10K / $10K–$50K / $50K+”). Free-text works better for thresholds; dropdown works better for tiers. Both paths are supported.
  2. 2
    Install the RouteForms Apps Script
    Standard 3-step install, see /google-forms-to-slack-setup-guide. Same Apps Script handles every routing rule on the form.
  3. 3
    Add the high-budget routing rule
    Rule: IF Budget > 10000 → #hot-leads. RouteForms parses $10,000 and 10000 identically; currency symbols and commas tolerated. For dropdowns, use contains instead of greater-than.
  4. 4
    Override the template on the rule
    Mention the AE; lead with the budget; quote the qualifying answers. Skip the standard 'every field on its own line' format, high-priority leads benefit from a scannable summary.
  5. 5
    Keep the default destination
    Everything that doesn't match the high-budget rule goes to the standard #new-leads channel. The default fallback ensures no lead is silently dropped just because it didn't trigger the priority alert.
  6. 6
    Test with a real submission
    Submit a form with budget = $25,000 and one with budget = $500. Watch the high-priority alert hit #hot-leads and the low-priority one hit #new-leads. Verify both via the delivery log.
Why this works

The two failure modes routing eliminates

  • Wrong-queue routing. Without the rule, a $50K lead lands in the same inbox as a $500 lead. They wait the same amount of time. The AE learns about it 4 hours later when an SDR reads the queue. The rule puts the lead in front of the right person before triage.
  • SLA invisibility.A general queue doesn't create accountability — “the inbox” is nobody's job. A named-channel mention is somebody's job. The SLA reminder in the template makes the clock visible to the whole channel.
FAQ

Frequently asked questions

What budget threshold should fire the high-priority alert?

Whatever your AE-vs-SDR routing line is. The most common pattern: anything over the price of your starter tier × 5 lands in #hot-leads with a senior rep mention; under that goes to the standard pipeline. For B2B SaaS that's typically $5K–$25K ACV; for services it's project value over $10K; for real estate it's anything inside the top quartile of your inventory price. The actual number matters less than enforcing the line consistently.

What if my form has a budget dropdown instead of a free-text field?

Use the contains operator instead of greater-than. Rule: 'IF Budget contains "$10K–$50K" OR Budget contains "$50K+" → #hot-leads'. RouteForms's numeric operators tolerate currency symbols and commas in free-text fields, but for dropdowns the value is a label string, so contains is the cleaner match.

Should I also notify the rep by email or just Slack?

Slack first; email is a secondary signal. The point of the routing rule is response speed. Slack is real-time, email is checked on a delay. If the rep is reliably online during business hours, Slack alone is enough. If they cover multiple time zones or are heads-down on existing deals, layer in an email alert via the CRM or a downstream Zap (RouteForms handles the Slack hop; email follow-up is best owned by your CRM).

How do I prevent low-quality 'high-budget' leads from triggering the alert?

Two layers. (1) Form-side: make the budget question feel weighty, phrase it as 'Approved budget' rather than 'Estimated budget', and require it. (2) Routing-side: layer a second rule. 'IF Budget > $10K AND Company size is not empty AND Use case is not empty → #hot-leads'. The presence checks filter out tire-kickers who blast '$50K' without filling in context. RouteForms's AND-joined conditions handle this natively.

What should the Slack message contain for a high-budget lead specifically?

Mention the rep, budget on the first line, name and company on the second, the qualifying answers (use case, timeline, current solution) in a quote block. Skip the full Q&A dump, high-priority leads want a scannable summary. Add a CTA link to the CRM record (or a 'create deal' link) so the rep is one click from working it.

Does this scale to multiple budget tiers?

Yes. Three tiers is a common shape: under $10K → #new-leads (SDR queue), $10K–$50K → #qualified-leads (AE channel), $50K+ → #enterprise (VP-mention). Top-to-bottom rule order: most-restrictive first. The fan-out mode also works if a $50K lead should land in both #enterprise AND #vp-direct. RouteForms handles fan-out at the form level.

What happens if the form's budget field is empty?

The greater-than operator returns false for empty values, so the rule won't fire and the lead falls to your default destination. If you want empty-budget leads to also count as low-priority, add an explicit 'IF Budget is empty → #new-leads' rule above the default to make the routing intent visible. Don't rely on the implicit fallback when the routing is high-stakes.

Can the high-priority message include an SLA reminder?

Yes, bake it into the template footer. 'Reply within 5 minutes, every minute past 5 cuts conversion by 9x (HBR)' lands harder than a plain mention. The reminder works because it makes the SLA visible to the channel, not just the assigned rep, everyone watching knows the lead is on the clock, which creates social pressure to handle it.

Catch every high-budget lead in real time

Free for 30 responses a month. No card. Conditional routing on every paid plan, no Professional-tier gate.