Geography

Michigan Federal Contract Obligations (Last Year)

This page summarizes federal contract obligations in Michigan for last full year, including award volume and market trend context.

Use this page to review federal contract obligations in Michigan for last full year. The analysis is based on FPDS award-action data.

Generated at 03/15/2026

Analysis period: Last full year

All figures on this page are based on FPDS award-action obligation data for completed calendar years only within the last full year analysis window.

State Code
MI
State
Michigan
Total Obligated
7.06 billion
7,059,961,503.80
Award Actions
195,516
Average Action Value
36,109.37

About Michigan federal contract activity

This page summarizes last full year of federal contract activity associated with Michigan. Based on the current FPDS Query dataset, this geography shows 7.06 billion in visible obligations across 195,516 award actions, with an average action value of 36,109.37. This view is designed to help users quickly understand scale, buyer concentration, contractor concentration, and overall market direction before moving into deeper procurement analysis.

Agency demand and leading federal buyers

Demand in Michigan appears concentrated among a relatively small group of federal buyers over the last full year. The visible agency ranking is led by DEPT OF THE ARMY, with 3.14 billion in obligations, followed by FEDERAL ACQUISITION SERVICE. This kind of concentration is useful context for business development, bid targeting, and understanding where the strongest federal demand appears to sit.

Vendor concentration and leading contractors

The vendor distribution helps show which contractors capture the largest visible share of obligations in Michigan over the last full year. The current ranking is led by GENERAL DYNAMICS LAND SYSTEMS INC., with 1.53 billion in obligations, followed by FORD MOTOR COMPANY. This gives users a practical view of the competitive landscape and the visible concentration at the top of the market.

Annual contract trend over the analysis window

The annual trend table provides a year-based view of how visible obligations and award actions have evolved in Michigan across the last full year, from 2025 through 2025. This is useful for spotting periods of expansion, relative stability, or softening activity in this federal market.

How to interpret this page

The tables and trend blocks on this page are generated from FPDS-derived procurement records prepared offline for fast public delivery. They are intended to give a practical summary of geography-level obligations, top buying agencies, leading vendors, major industries, major PSC categories, and visible year-over-year movement within last full year. Users who need deeper filtering, custom SQL, or cross-market comparison can continue the analysis directly inside FPDS Query.

Top Agencies

SELECT
    agency_id,
    agency_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
        anyHeavy(content__award__purchaserInformation__contractingOfficeAgencyID__name) AS agency_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__placeOfPerformance__principalPlaceOfPerformance__stateCode = 'MI'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY agency_id
)
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Award Actions
2100 DEPT OF THE ARMY 3,136,814,581.30 3.14 billion 2,353
4732 FEDERAL ACQUISITION SERVICE 1,690,059,289.63 1.69 billion 118,279
97AS DEFENSE LOGISTICS AGENCY 680,605,446.00 680.61 million 64,724
3600 VETERANS AFFAIRS, DEPARTMENT OF 352,883,058.43 352.88 million 2,500
5700 DEPT OF THE AIR FORCE 159,119,212.56 159.12 million 481
12K2 AGRICULTURAL MARKETING SERVICE 150,903,841.07 150.90 million 474
1700 DEPT OF THE NAVY 121,895,413.17 121.90 million 773
7529 NATIONAL INSTITUTES OF HEALTH 104,936,475.34 104.94 million 532
7008 U.S. COAST GUARD 55,312,499.88 55.31 million 396
1900 STATE, DEPARTMENT OF 54,108,623.80 54.11 million 80

Insight

Michigan contract activity over the last full year appears concentrated among a relatively small group of buying agencies. The visible ranking is led by DEPT OF THE ARMY, followed by FEDERAL ACQUISITION SERVICE, which suggests that federal demand in this geography is not evenly distributed.

Top Vendors

SELECT
    vendor_name,
    cage_code,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__vendor__vendorHeader__vendorName AS vendor_name,
        ifNull(content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode, '') AS cage_code,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__placeOfPerformance__principalPlaceOfPerformance__stateCode = 'MI'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Award Actions
GENERAL DYNAMICS LAND SYSTEMS INC. 7W356 1,534,668,441.81 1.53 billion 808
FORD MOTOR COMPANY 3LQV7 633,334,125.94 633.33 million 13,519
GENERAL MOTORS LLC 3H9V6 525,467,302.56 525.47 million 11,693
FCA US LLC 5KAV0 479,969,687.02 479.97 million 11,710
RENK AMERICA LLC 02978 292,774,293.69 292.77 million 23
GM DEFENSE LLC 832H1 288,020,409.51 288.02 million 74
AMERICAN RHEINMETALL VEHICLES, LLC 8B3G4 167,406,429.25 167.41 million 15
KOKOSING ALBERICI TRAYLOR, LLC 914G9 147,875,955.83 147.88 million 35
LOC PERFORMANCE PRODUCTS LLC 1V513 120,435,656.76 120.44 million 103
BAE SYSTEMS LAND AND ARMAMENTS L.P. 7B726 99,029,056.53 99.03 million 2

Insight

Visible obligations in Michigan over the last full year appear concentrated among a relatively small set of leading vendors. GENERAL DYNAMICS LAND SYSTEMS INC. ranks first, followed by FORD MOTOR COMPANY, which helps define the current competitive landscape in this geography.

Top NAICS

SELECT
    naics_code,
    naics_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
        anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__placeOfPerformance__principalPlaceOfPerformance__stateCode = 'MI'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY naics_code
)
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Award Actions
336992 MILITARY ARMORED VEHICLE, TANK, AND TANK COMPONENT MANUFACTURING 1,794,488,091.05 1.79 billion 679
336111 AUTOMOBILE MANUFACTURING 1,638,771,115.52 1.64 billion 36,922
336350 MOTOR VEHICLE TRANSMISSION AND POWER TRAIN PARTS MANUFACTURING 296,449,089.20 296.45 million 125
541330 ENGINEERING SERVICES 232,393,044.35 232.39 million 547
237990 OTHER HEAVY AND CIVIL ENGINEERING CONSTRUCTION 232,189,930.36 232.19 million 137
336112 LIGHT TRUCK AND UTILITY VEHICLE MANUFACTURING 219,495,603.47 219.50 million 69
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 175,020,363.68 175.02 million 438
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 153,413,481.38 153.41 million 352
324110 PETROLEUM REFINERIES 116,329,282.85 116.33 million 38,122
541690 OTHER SCIENTIFIC AND TECHNICAL CONSULTING SERVICES 110,603,295.89 110.60 million 544

Insight

The top-NAICS table highlights the industries with the largest visible obligations in Michigan over the last full year. This helps show which federal market segments are most prominent in the state.

Top PSC Codes

SELECT
    psc_code,
    psc_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
        anyHeavy(content__award__productOrServiceInformation__productOrServiceCode__description) AS psc_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__placeOfPerformance__principalPlaceOfPerformance__stateCode = 'MI'
        AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
        AND content__award__productOrServiceInformation__productOrServiceCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY psc_code
)
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Award Actions
2310 PASSENGER MOTOR VEHICLES 1,708,332,063.15 1.71 billion 36,945
2350 COMBAT, ASSAULT, AND TACTICAL VEHICLES, TRACKED 689,826,830.66 689.83 million 125
2355 COMBAT, ASSAULT, AND TACTICAL VEHICLES, WHEELED 480,652,679.83 480.65 million 125
R499 SUPPORT- PROFESSIONAL: OTHER 367,261,029.87 367.26 million 746
2520 VEHICULAR POWER TRANSMISSION COMPONENTS 296,893,265.60 296.89 million 96
AC13 NATIONAL DEFENSE R&D SERVICES; DEPARTMENT OF DEFENSE - MILITARY; EXPERIMENTAL DEVELOPMENT 237,566,235.92 237.57 million 142
K010 MODIFICATION OF EQUIPMENT- WEAPONS 181,139,052.45 181.14 million 60
2530 VEHICULAR BRAKE, STEERING, AXLE, WHEEL, AND TRACK COMPONENTS 159,568,799.69 159.57 million 328
Y1KA CONSTRUCTION OF DAMS 147,907,515.83 147.91 million 37
8915 FRUITS AND VEGETABLES 146,726,952.93 146.73 million 452

Insight

The top-PSC table highlights the product and service codes with the largest visible obligations in Michigan over the last full year. This helps show which categories of federal demand are most prominent in the state.

Annual Trend

SELECT
    year,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__placeOfPerformance__principalPlaceOfPerformance__stateCode = 'MI'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 7,059,961,503.80 7.06 billion 195,516

Insight

The annual trend shows how obligations in Michigan moved across the last full year, from 2025 through 2025. This helps users judge whether visible contract activity appears stable, rising, or easing over time.

Use FPDS Query for deeper geographic analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper geographic analysis across agencies, vendors, industries, PSC categories, and annual trends.

Continue from this last full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.