Federal Contractor

CDW GOVERNMENT LLC Federal Contract Obligations (Last 5 Years)

CDW GOVERNMENT LLC (CAGE 1KH72, UEI PHZDZ8SJ5CM1) shows 8,689 federal award actions and $1.84 billion obligated over the last five years.

CDW GOVERNMENT LLC’s federal procurement record is concentrated in technology and related services, with the largest obligations coming from the Federal Aviation Administration, the Department of State, and the Department of the Army. Its award history spans 8,689 actions and reflects steady annual funding from 2021 through 2025, with peak obligations in 2022.

Generated at 03/21/2026

Analysis period: Last 5 years

Figures reflect the last five years of FPDS data and are based on obligated amounts by agency, NAICS, and fiscal year.

CAGE Code
1KH72
UEI
PHZDZ8SJ5CM1
Total Obligated
1.84 billion
1,842,758,625.25
Award Actions
8,689
Average Action Value
212,079.48

About CDW GOVERNMENT LLC federal contract activity

CDW GOVERNMENT LLC, identified by CAGE code 1KH72 and UEI PHZDZ8SJ5CM1, obligated 1.84 billion across 8,689 awards over the last 5 years, for an average award value of 212,079.48. The profile reflects a high-volume federal reseller and systems integrator relationship pattern, with spend spread across many awards rather than concentrated in a small number of exceptionally large actions.

Agency mix and customer concentration

Obligations are led by the Federal Aviation Administration at 786.87 million across 2,080 awards, followed by the Department of State at 306.13 million across 3,183 awards and the Department of the Army at 267.41 million across 904 awards. The Department of the Air Force and Department of the Navy also appear as meaningful buyers, indicating a mix of civilian and defense demand with especially strong recurring activity in FAA and State.

Industry profile based on NAICS activity

The NAICS profile is anchored in electronic computer manufacturing at 815.22 million, computer systems design services at 499.09 million, and other computer related services at 460.87 million. Smaller but still relevant activity appears in software publishers and computer and software stores, which is consistent with a broad technology supply and integration footprint rather than a single narrow product line.

Annual contract trend over the analysis window

Annual obligations peaked in 2022 at 457.31 million and then stepped down to 364.77 million in 2023 and 304.26 million in 2024, with 280.14 million recorded in 2025. Award counts followed the same general pattern, declining from 2,562 in 2021 to 1,023 in 2025, suggesting reduced transaction volume alongside lower obligated dollars in the most recent years.

How to interpret this page

This page summarizes FPDS award activity tied to CAGE 1KH72 and UEI PHZDZ8SJ5CM1 over the last 5 years, using obligated dollars and award counts as reported in the source dataset. Agency, NAICS, and annual views are based on ranked totals within the analysis window; values are not adjusted for inflation and reflect only the records included in this 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__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '1KH72'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
6920 FEDERAL AVIATION ADMINISTRATION 786,869,802.70 786.87 million 2,080
1900 STATE, DEPARTMENT OF 306,134,817.63 306.13 million 3,183
2100 DEPT OF THE ARMY 267,414,562.80 267.41 million 904
5700 DEPT OF THE AIR FORCE 69,281,887.59 69.28 million 278
1700 DEPT OF THE NAVY 61,308,936.50 61.31 million 402
97DH DEFENSE HEALTH AGENCY (DHA) 48,296,213.88 48.30 million 23
7200 AGENCY FOR INTERNATIONAL DEVELOPMENT 38,570,511.64 38.57 million 68
97HW UNIFORMED SERVICES UNIVERSITY OF THE HEALTH SCIENCES (USUHS) 37,718,337.21 37.72 million 70
7523 CENTERS FOR DISEASE CONTROL AND PREVENTION 34,260,381.62 34.26 million 44
7529 NATIONAL INSTITUTES OF HEALTH 34,212,352.85 34.21 million 370

Insight

Over the last 5 years, CDW GOVERNMENT LLC’s obligations of $1.84 billion across 8,689 awards are concentrated in a few agencies, led by the Federal Aviation Administration at $786.87 million (2,080 awards), or about 43 percent of total obligated value. The Department of State is the next largest customer by award count with 3,183 awards but a lower obligation total of $306.13 million, indicating a higher volume of smaller awards relative to FAA. Department of the Army follows at $267.41 million, while the remaining top agencies each account for materially smaller shares, suggesting a broad but uneven distribution across civilian and defense customers.

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__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '1KH72'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
334111 ELECTRONIC COMPUTER MANUFACTURING 815,221,643.27 815.22 million 2,580
541512 COMPUTER SYSTEMS DESIGN SERVICES 499,093,373.52 499.09 million 1,516
541519 OTHER COMPUTER RELATED SERVICES 460,870,958.17 460.87 million 3,506
511210 SOFTWARE PUBLISHERS 26,902,953.17 26.90 million 136
443120 COMPUTER AND SOFTWARE STORES 9,911,914.46 9.91 million 47
423430 COMPUTER AND COMPUTER PERIPHERAL EQUIPMENT AND SOFTWARE MERCHANT WHOLESALERS 9,123,469.13 9.12 million 330
423690 OTHER ELECTRONIC PARTS AND EQUIPMENT MERCHANT WHOLESALERS 7,403,203.96 7.40 million 10
334614 SOFTWARE AND OTHER PRERECORDED COMPACT DISC, TAPE, AND RECORD REPRODUCING 3,591,955.43 3.59 million 21
513210 SOFTWARE PUBLISHERS 3,530,497.98 3.53 million 35
334118 COMPUTER TERMINAL AND OTHER COMPUTER PERIPHERAL EQUIPMENT MANUFACTURING 1,555,042.41 1.56 million 117

Insight

CDW GOVERNMENT LLC’s obligations over the last 5 years are concentrated in a small number of NAICS codes, led by 334111 Electronic Computer Manufacturing at $815.22 million and 2,580 awards, followed by 541512 Computer Systems Design Services at $499.09 million and 1,516 awards, and 541519 Other Computer Related Services at $460.87 million and 3,506 awards. These three NAICS codes account for the vast majority of the vendor’s $1.84 billion in obligated value, indicating a strong emphasis on computer hardware, systems integration, and related IT services. Remaining obligations are distributed across smaller software and wholesale-related categories, each materially below $30 million, suggesting a long tail of lower-value activity outside the core NAICS mix.

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__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '1KH72'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 280,137,345.28 280.14 million 1,023
2024 304,263,213.98 304.26 million 1,337
2023 364,771,057.90 364.77 million 1,683
2022 457,309,636.83 457.31 million 2,084
2021 436,277,371.26 436.28 million 2,562

Insight

Over the last 5 years, CDW GOVERNMENT LLC (CAGE 1KH72) obligated $1.84 billion across 8,689 awards, with an average award value of $212,079.48. Obligations peaked in 2022 at $457.31 million and then declined each year to $280.14 million in 2025, indicating a sustained downward trend in annual funding levels. Award volume also fell from 2,562 in 2021 to 1,023 in 2025, suggesting reduced transaction activity alongside lower obligated dollars.

Use FPDS Query for deeper contractor analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contractor analysis across buying agencies, NAICS, and annual trends.

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