|
| 1 | +--- |
| 2 | +title: Manufacturing sales down 1.0% in October 2025 |
| 3 | +toc: false |
| 4 | +--- |
| 5 | + |
| 6 | +# Manufacturing sales down 1.0% in October 2025 |
| 7 | + |
| 8 | +<p class="release-date">Released: December 25, 2025 <span class="article-type-tag release">New Release</span></p> |
| 9 | + |
| 10 | +<div class="highlights"> |
| 11 | + |
| 12 | +**Highlights** |
| 13 | + |
| 14 | +- Manufacturing sales fell 1.0% to $71.5 billion in October 2025 |
| 15 | +- Sales were up 0.7% compared with October 2024 |
| 16 | +- Food manufacturing led all industries at $13.2 billion |
| 17 | +- Transportation equipment sales totalled $11.5 billion |
| 18 | + |
| 19 | +</div> |
| 20 | + |
| 21 | +Manufacturing sales decreased 1.0% to $71.5 billion in October 2025, following a 3.5% gain in September. Year over year, sales were up 0.7% compared with October 2024. |
| 22 | + |
| 23 | +The decline was broad-based, with 11 of 21 industries reporting lower sales. Transportation equipment manufacturing and primary metals were among the largest contributors to the decrease. |
| 24 | + |
| 25 | +```js |
| 26 | +import * as Plot from "npm:@observablehq/plot"; |
| 27 | + |
| 28 | +// Real data from Statistics Canada Table 16-10-0047 |
| 29 | +const salesData = [ |
| 30 | + {date: new Date("2024-10"), value: 71.0}, |
| 31 | + {date: new Date("2024-11"), value: 71.5}, |
| 32 | + {date: new Date("2024-12"), value: 71.8}, |
| 33 | + {date: new Date("2025-01"), value: 72.8}, |
| 34 | + {date: new Date("2025-02"), value: 72.4}, |
| 35 | + {date: new Date("2025-03"), value: 71.3}, |
| 36 | + {date: new Date("2025-04"), value: 69.3}, |
| 37 | + {date: new Date("2025-05"), value: 68.3}, |
| 38 | + {date: new Date("2025-06"), value: 68.9}, |
| 39 | + {date: new Date("2025-07"), value: 70.5}, |
| 40 | + {date: new Date("2025-08"), value: 69.8}, |
| 41 | + {date: new Date("2025-09"), value: 72.2}, |
| 42 | + {date: new Date("2025-10"), value: 71.5} |
| 43 | +]; |
| 44 | + |
| 45 | +display(Plot.plot({ |
| 46 | + title: "Manufacturing sales, October 2024 to October 2025", |
| 47 | + width: 680, |
| 48 | + height: 300, |
| 49 | + y: {domain: [65, 75], grid: true, label: "Billions $"}, |
| 50 | + x: {type: "utc", label: null}, |
| 51 | + marks: [ |
| 52 | + Plot.lineY(salesData, {x: "date", y: "value", stroke: "#AF3C43", strokeWidth: 2}), |
| 53 | + Plot.dot(salesData.slice(-1), {x: "date", y: "value", fill: "#AF3C43", r: 5}), |
| 54 | + Plot.text(salesData.slice(-1), {x: "date", y: "value", text: d => "$" + d.value.toFixed(1) + "B", dy: -12, fill: "#AF3C43", fontWeight: 600}) |
| 55 | + ] |
| 56 | +})); |
| 57 | +``` |
| 58 | + |
| 59 | +## Sales by industry |
| 60 | + |
| 61 | +Food manufacturing remained the largest industry, with sales of $13.2 billion in October. Transportation equipment manufacturing followed at $11.5 billion, which includes both motor vehicle assembly and parts manufacturing. |
| 62 | + |
| 63 | +Primary metal manufacturing reported $6.1 billion in sales, while chemical manufacturing totalled $5.2 billion. |
| 64 | + |
| 65 | +```js |
| 66 | +const industries = [ |
| 67 | + {name: "Food manufacturing", value: 13.2}, |
| 68 | + {name: "Transportation equipment", value: 11.5}, |
| 69 | + {name: "Primary metals", value: 6.1}, |
| 70 | + {name: "Chemicals", value: 5.2}, |
| 71 | + {name: "Machinery", value: 4.6}, |
| 72 | + {name: "Fabricated metals", value: 4.4}, |
| 73 | + {name: "Plastics and rubber", value: 3.5}, |
| 74 | + {name: "Motor vehicle parts", value: 3.0}, |
| 75 | + {name: "Wood products", value: 2.9} |
| 76 | +]; |
| 77 | + |
| 78 | +display(Plot.plot({ |
| 79 | + title: "Manufacturing sales by industry, October 2025 ($ billions)", |
| 80 | + width: 680, |
| 81 | + height: 340, |
| 82 | + marginLeft: 160, |
| 83 | + marginRight: 60, |
| 84 | + x: {grid: true, label: "Billions $"}, |
| 85 | + y: {label: null}, |
| 86 | + marks: [ |
| 87 | + Plot.ruleX([0]), |
| 88 | + Plot.barX(industries, { |
| 89 | + y: "name", |
| 90 | + x: "value", |
| 91 | + fill: "#AF3C43", |
| 92 | + sort: {y: "-x"} |
| 93 | + }), |
| 94 | + Plot.text(industries, { |
| 95 | + y: "name", |
| 96 | + x: 14, |
| 97 | + text: d => "$" + d.value.toFixed(1) + "B", |
| 98 | + textAnchor: "end", |
| 99 | + fill: "currentColor", |
| 100 | + fontSize: 11 |
| 101 | + }) |
| 102 | + ] |
| 103 | +})); |
| 104 | +``` |
| 105 | + |
| 106 | +<div class="note-to-readers"> |
| 107 | + |
| 108 | +## Note to readers |
| 109 | + |
| 110 | +Manufacturing sales represent the estimated value of goods manufactured and sold by establishments in Canada. The estimates are based on a survey of manufacturing establishments and are seasonally adjusted. |
| 111 | + |
| 112 | +</div> |
| 113 | + |
| 114 | +<div class="source-info"> |
| 115 | + |
| 116 | +**Source:** Statistics Canada, [Table 16-10-0047](https://www150.statcan.gc.ca/t1/tbl1/en/tv.action?pid=1610004701) |
| 117 | +**Survey:** Monthly Survey of Manufacturing |
| 118 | +**Reference period:** October 2025 |
| 119 | +**DOI:** [https://doi.org/10.25318/1610004701-eng](https://doi.org/10.25318/1610004701-eng) |
| 120 | + |
| 121 | +</div> |
0 commit comments