Ask a question instead of "make a chart," let Copilot draft the line, column, or PivotTable, then reconcile every point and total against the source with plain Excel formulas.
What you'll learn
Turn an analysis question into a six-part Copilot prompt
Choose a line or column chart to fit the claim
Build a PivotTable from natural language and verify its structure
Reconcile charts and PivotTables against independent Excel calculations
The table tells you revenue changed. A line that rises and dips makes the change easier to see, but a chart built from the wrong field can be persuasive for the wrong reason. Copilot in Excel can draft a chart or PivotTable from one sentence. Take the speed, then check the structure and the numbers.
Start with a question, not a chart
Don't begin with "make me a nice chart." Begin with the question the chart needs to answer: "How has monthly revenue changed, and which region contributed most?" That question identifies the measure (Revenue), aggregation (Sum), time grouping (Month), comparison (Region), and purpose.
"Revenue by region" still leaves Copilot guessing. A sum, average, and count of revenue by region answer different questions. The measure is the number being calculated, the dimension is the field used to group it, and the aggregation tells Excel how to combine the values. State all three before you ask for a visual.
A reusable analysis prompt covers six parts: action, scope, measure, aggregation, grouping, and the requested output with a guardrail. For example: "Analyze tblSales using Sum of Revenue, grouped by Month and Region, for January through June. Return Finding, Evidence, and Follow-up question. Do not infer causes." Each part removes a decision Copilot would otherwise make for you.
The six-part analysis prompt· excel
Bad example
Analyze this sales table and tell me what stands out.
Good example
Analyze tblSales. Use Sum of Revenue and group the results by calendar Month, Region, and Product. Identify three evidence-backed findings and any unusual records. For each unusual record, state the comparison group, statistic, threshold, and exact source row. Return Finding, Evidence, and Follow-up question. Do not infer causes not present in the table.
Why this works: Findings tied to numbers, unusual values defined by an explicit rule rather than a hunch, and every "why" parked as a follow-up question instead of a conclusion.
Decide what would prove each claim
Before you draw anything, decide what evidence each finding would need. Naming it up front is how you notice a chart that looks right but proves nothing:
If Copilot claims…
The evidence required is…
Revenue increased over time
Ordered periods and an independently calculated total for each
West exceeded East
A total for each region using the same rows and aggregation
One record is unusual
The exact record, its comparison group, a statistic, and a threshold
A promotion caused an increase
Direct source data about the promotion and a defensible method
A table can nearly always establish that values differ. It usually cannot establish why. That last row is the trap: a difference dressed up as a cause. When Copilot offers a reason, convert it into an investigation question ("Was a promotion active during this increase?") unless a column directly records it. The rest of the rows are easier to reconcile with ordinary formulas, which the last step of this lesson walks through.
Pick the chart for the question
A chart supports an analysis. It doesn't certify the rows, dates, measure, or aggregation behind it. Once the numbers check out, choose the form that matches the question. Use a line for ordered time, such as months running from left to right. Use columns or bars for categories such as revenue by region. Drawing regions as a trend line gives them an order the data doesn't contain.
Tell Copilot which fields belong on the axes, which period to cover, and what title to use. Then inspect the result. For the monthly example, the horizontal axis should run from January through June in order, the vertical axis should be Revenue, the aggregation should be Sum, and each month should appear once. One duplicated date or date stored as text can change the line and the story you take from it.
A trend line for revenue over time· excel
Bad example
Make a chart of the sales trend.
Good example
Using tblSales, create a line chart of monthly Sum of Revenue from January through June 2026. Put Month on the horizontal axis and Revenue on the vertical axis, exclude Units, and title it "Monthly Revenue Trend."
Why this works: A six-point line you can read left to right, after you confirm the axes, the Sum aggregation, and one point per month.
A column chart to compare regions· excel
Bad example
Make a chart comparing the regions.
Good example
Using tblSales, create a clustered column chart of Sum of Revenue by Region. Use Region as the category axis and Revenue as the value, and title it "Revenue by Region." Keep the monthly chart unchanged.
Why this works: One column per region for side-by-side comparison, with the existing trend chart left untouched.
Line for time, columns for categories
If the horizontal axis is a sequence (months, quarters, weeks), reach for a line. If it's a set of labels you're comparing (regions, products, teams), reach for columns. Matching the shape to the question keeps the chart from implying a story the data doesn't tell.
PivotTables in plain language
A PivotTable is an interactive summary. Dimensions go into rows, columns, or filters, while the measure goes into values. Excel handles the grouping. Copilot can build that layout from a sentence such as "Region in Rows, Product in Columns, Sum of Revenue in Values, Month in Filters." The drag-and-drop disappears, but the possibility of a wrong aggregation doesn't. Count beside Sum can look perfectly reasonable while answering a different question.
Check the layout before reading the values. Confirm the row field and column field, make sure Revenue uses Sum rather than Count, and look for the row totals, column totals, and grand total. Then ask Copilot to interpret the table. Keep the metric in view: highest total revenue and highest average transaction are separate questions, even when the same PivotTable contains both.
Summarize revenue in a PivotTable· excel
Bad example
Make a PivotTable from this sales data.
Good example
Create a PivotTable from tblSales with Region in Rows, Product in Columns, Sum of Revenue in Values, and calendar Month in Filters. Label it "Revenue by Region and Product," and keep the source table unchanged.
Why this works: A cross-tab of revenue by region and product with row, column, and grand totals, structure to verify before you interpret it.
Sum, not Count
The most common PivotTable error is a values field set to Count instead of Sum. It produces neat numbers that answer "how many rows" rather than "how much revenue." Check the aggregation on every value field, and compare a cell or two against a SUMIFS of the same slice.
Reconcile before you trust
Don't use a second Copilot prompt as the audit. Use ordinary Excel formulas that don't depend on Copilot's reading of the table. In an empty cell, calculate the source total with =SUM(tblSales[Revenue]). Check that =COUNT for the revenue and date columns agrees with the row count from =ROWS. A mismatch points to a blank or a value stored as text.
Rebuild the summary independently. Compare a monthly =SUMIFS with each point on the line chart. Use regional and region-by-product =SUMIFS checks for the PivotTable. Clear any filter before comparing a PivotTable with the full source. If a value still differs, find the first place the numbers part company: the source rows, your summary, the PivotTable, or the chart. Check filters, date types, blanks, and aggregation one at a time.
Reconcile to one grand total
Pick a single control number, the source SUM of Revenue, and make the chart summary, the PivotTable grand total, and your independent SUMIFS all reconcile to it. When everything ties to the same total, you can trust the visuals. When it doesn't, you've found exactly where to look.
A worked reconciliation
A retail manager's tblSales runs twelve rows across six months. Copilot reports that June is the highest month at 45,750, that West leads East, and that Beta out-earns Alpha. Before any of that reaches a deck, reconcile it.
The independent monthly SUMIFS give 21,000, 23,500, 28,500, 34,500, 33,000, and 45,750, summing to 186,250. Notice the shape: revenue climbs through April, dips in May, then jumps in June. "It rises every month" would be wrong, and the arithmetic is what catches it. Regional SUMIFS give West 104,750 and East 81,500, which also totals 186,250, so both the chart and the PivotTable must reconcile to that same grand total.
The unusual-value claim needs a rule, not a vibe. Define an Alpha record as unusual when its Revenue is more than 50% above the median Alpha revenue: the median is 12,000, the threshold 18,000, and the 21,000 May record clears it. That's a reproducible finding, and it still doesn't say why the value is high.
Try it yourself
Reconcile a chart in eight minutes
Build a visual, then prove it matches the data. That's the habit that makes a chart safe to present.
01
Turn a small dated sales range into a named table, for example tblSales, with clean Date, Region, and Revenue columns.
02
Ask Copilot for a line chart of monthly Sum of Revenue, with Month on the horizontal axis.
Hint: Name the table and the aggregation explicitly.
03
In an empty cell, compute one month's total with =SUMIFS over the Revenue column bounded by that month's dates.
Hint: Use >= the month start and < the next month's start.
04
Compare your SUMIFS result with the matching point on the chart. Display data labels if you need to read the value.
05
Confirm =SUM of the whole Revenue column equals the sum of your monthly checks, then note whether any month is missing.
A chart whose every plotted point you can trace to a formula, plus a repeatable way to catch a visual built on the wrong field.
Key takeaways
Start from a question that names the measure, aggregation, grouping, and period. Don't just ask Copilot to "make a chart."
Use a line chart for ordered time and columns for category comparisons.
Verify a chart's axes and a PivotTable's aggregation before reading any number.
Reconcile the source total, chart summary, and PivotTable grand total to one control figure.
Clear filters before comparing a PivotTable with the full source.
Check your understanding
1. Which request gives Copilot enough to produce a reviewable analysis and chart?
2. A chart totals 39,000 but your independent source total is 41,000. The chart and PivotTable agree, and the PivotTable has a February filter applied. What should you do first?
3. You want to compare total revenue across four regions. Which chart fits?
4. Your PivotTable of Revenue by Region shows suspiciously small, round numbers. What's the likely cause?
5. Copilot flags a record as "unusual." What makes that finding reproducible rather than a hunch?
Frequently asked questions
Terms used in this lesson
measure
The numeric field being calculated, such as Revenue, Units, or Margin.
dimension
A field used to group or describe a measure, such as Region, Product, or Month.
aggregation
The operation that combines values, such as Sum, Average, Count, Minimum, or Maximum.
PivotTable
An interactive summary that groups and aggregates source data, with dimensions in rows, columns, or filters and measures in the values area.