Preparing your learning space...
40% through AI Dashboards tutorials
A Sales & Marketing dashboard tracks the full revenue funnel: from leads and campaigns through to closed deals and ROI. Sales managers use it to spot slipping deals and top performers; marketing teams use it to shift budget to the channels that pay back. We build it with the foundation method, then add sales pipeline and marketing funnel metrics.
Sales teams use this to answer: Are we hitting target? Which region or rep is lagging? Where are deals stalling?
Marketing teams use this to answer: Which channel pays back? Where does the funnel leak? Is our spend efficient?
Together, the dashboard connects marketing investment to sales outcome so both teams align on what drives revenue.
Load a table named SalesData with these columns:
| Column | Example |
|---|---|
| OrderID | SO-1001 |
| Date | 2026-07-14 |
| Region | West |
| SalesRep | A. Khan |
| Product | Pro License |
| Revenue | 1200 |
| Cost | 480 |
| Quantity | 3 |
| Stage | Won / Lost / Open |
Load a table named MktgData with these columns:
| Column | Example |
|---|---|
| Campaign | Spring Sale |
| Channel | |
| Date | 2026-07-01 |
| Spend | 2000 |
| Impressions | 90000 |
| Clicks | 3000 |
| Leads | 400 |
| Conversions | 60 |
| Revenue | 9000 |
Ask Copilot to add profit and ratio columns:
Add a column called Profit to SalesData as Revenue minus Cost. Add columns CTR and ROAS to MktgData as Clicks/Impressions and Revenue/Spend.
Then drop KPI cards using:
Sales cards
=SUM(SalesData[Revenue]) =SUM(SalesData[Profit]) =AVERAGE(SalesData[Revenue]) =COUNTIFS(SalesData[Stage],"Won")/ (COUNTIFS(SalesData[Stage],"Won")+COUNTIFS(SalesData[Stage],"Lost"))
Marketing cards
=AVERAGE(MktgData[CTR]) =AVERAGE(MktgData[ROAS]) =SUM(MktgData[Revenue])/SUM(MktgData[Spend]) =SUM(MktgData[Spend])/SUM(MktgData[Leads])
The win-rate formula divides closed-won deals by all closed deals. The ROAS card divides total marketing revenue by total spend for a portfolio view.
Sales charts
Marketing charts
Combined view
Copilot prompts:
Insert a column chart of revenue by region from SalesData. Insert a column chart of spend versus revenue by channel from MktgData.
Show how many deals sit in each stage so managers can push the stuck ones.
=COUNTIFS(SalesData[Stage],"Lead") =COUNTIFS(SalesData[Stage],"Qualified") =COUNTIFS(SalesData[Stage],"Proposal") =COUNTIFS(SalesData[Stage],"Won")
Plot these as a bar chart ordered Lead → Won to read like a funnel.
Show drop-off from impression to conversion so marketers can fix the leakiest step.
=SUM(MktgData[Impressions]) =SUM(MktgData[Clicks]) =SUM(MktgData[Leads]) =SUM(MktgData[Conversions])
Plot as a bar chart Impressions → Clicks → Leads → Conversions to see where users fall out.
Design a combined sales and marketing dashboard in Excel. Sales table SalesData has columns OrderID, Date, Region, SalesRep, Revenue, Cost, Stage. Marketing table MktgData has columns Campaign, Channel, Spend, Impressions, Clicks, Leads, Conversions, Revenue. Give me the KPIs for each, the best chart for each, a combined spend-vs-revenue view, and Copilot prompts to build it.
Save your progress and earn XP for completing tutorials.
4 questions · Pass with 70%+
1What is the correct formula for ROAS (Return on Ad Spend)?
2In the sales pipeline funnel, which stage should appear first when plotted as a bar chart?
3 What does the combined spend-vs-revenue combo chart show both teams?
4How is Cost Per Lead (CPL) calculated?
Technology
Excel with AI
Lesson group
AI Dashboards
Progress
40% complete