LibraryCRM Pipeline
PROsales
CRM Pipeline
The CRM Pipeline gives Power Apps a clean sales board: four stages — Lead, Qualified, Proposal, Won — with deal cards showing the company and amount, and a running total per stage. It is a single data-driven SVG Image; point it at your deals collection and the board groups and totals everything automatically, with no PCF.
Lead
Acme
$24k
Globex
$18k
Qualified
Initech
$42k
Proposal
Umbrella
$31k
Won
Stark
$56k
YAML source
Preview — full code with PRO# CRM Pipeline — PowerBlocks (PRO Screen)
# A sales pipeline board (Lead / Qualified / Proposal / Won) rendered as a single
# data-driven Power Fx SVG Image: deals are grouped into stages, each column shows
# its total value.
#
# STEP 1 — In Screen.OnVisible (or App.OnStart):
# ClearCollect(
# colCRM,
# { Company: "Acme Corp", Amount: 24, Stage: "Lead" },
# { Company: "Globex", Amount: 18, Stage: "Lead" },
# { Company: "Initech", Amount: 42, Stage: "Qualified" },
# { Company: "Umbrella", Amount: 31, Stage: "Proposal" },
# { Company: "Stark Ind.", Amount: 56, Stage: "Won" }
# );
# … full component definition unlocked with PROThis is a partial preview. Unlock the full component →
Common use cases
Sales pipelines
Track deals by stage with per-column totals at a glance.
Opportunity boards
Visualise where revenue sits across the funnel.
Lead management
Move prospects through stages and see weighted totals.
How to use CRM Pipeline in Power Apps
- 1Add the colCRM collection to Screen.OnVisible (see the YAML header).
- 2Choose your locale (EN or FR) and click "Copy YAML".
- 3Paste the control onto a blank screen.
- 4Swap colCRM for your deals — stages and totals recompute automatically.
Tip — Patch a deal's Stage to move it across the board; combine with the Stats Card and SVG charts for a full sales dashboard.