Federal Contractor

CDW GOVERNMENT LLC Federal Contract Obligations (Last 10 Years)

CDW GOVERNMENT LLC, CAGE 1KH72, UEI PHZDZ8SJ5CM1, has received 21,205 federal award actions totaling $5.50 billion over the last 10 years.

This FPDS vendor page summarizes federal procurement activity for CDW GOVERNMENT LLC across agencies, NAICS sectors, and fiscal years. The largest obligations are from the Department of the Army, the Federal Aviation Administration, and the Department of the Air Force, with recent annual obligations ranging from $280.14 million in 2025 to $457.31 million in 2022.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals reflect the last 10 years of readable obligated amounts and may differ from transaction-level records because of rounding and data normalization.

CAGE Code
1KH72
UEI
PHZDZ8SJ5CM1
Total Obligated
5.50 billion
5,502,476,081.19
Award Actions
21,205
Average Action Value
259,489.55

About CDW GOVERNMENT LLC federal contract activity

CDW GOVERNMENT LLC (CAGE 1KH72, UEI PHZDZ8SJ5CM1) recorded $5.50 billion in obligations across 21,205 awards over the last 10 years, with an average award value of $259,489.55. The profile indicates a high-volume federal vendor with both large strategic buys and a broad tail of smaller transactions.

Agency mix and customer concentration

The agency mix is led by the DEPT OF THE ARMY at $1.11 billion across 4,933 awards, followed closely by the FEDERAL AVIATION ADMINISTRATION at $1.08 billion across 3,118 awards. The DEPT OF THE AIR FORCE, US CENSUS BUREAU, and STATE, DEPARTMENT OF STATE also represent material demand, showing concentration in defense, transportation, and civilian agency procurement.

Industry profile based on NAICS activity

Obligations are concentrated in electronic computer manufacturing (NAICS 334111) at $2.20 billion and other computer related services (NAICS 541519) at $1.48 billion, together accounting for the majority of recorded spend. Additional activity appears in computer systems design services, telephone apparatus manufacturing, and computer and software stores, suggesting a mix of hardware supply, integration, and related IT distribution channels.

Annual contract trend over the analysis window

Annual obligations have remained elevated but show a decline from the 2022 peak of $457.31 million to $280.14 million in 2025, with 2023 and 2024 also above $300 million. Award counts follow a similar pattern, peaking in 2021 and then moderating, which is consistent with a maturing but still active procurement relationship.

How to interpret this page

This summary uses FPDS award records associated with CAGE 1KH72 and UEI PHZDZ8SJ5CM1 over the last 10 years. Totals reflect obligated dollars and award counts as reported in the dataset; agency, NAICS, and annual views are based on ranked aggregate obligations within the same analysis window.

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 10 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 1,112,932,626.33 1.11 billion 4,933
6920 FEDERAL AVIATION ADMINISTRATION 1,083,000,782.02 1.08 billion 3,118
5700 DEPT OF THE AIR FORCE 665,103,145.58 665.10 million 1,772
1323 US CENSUS BUREAU 561,262,543.77 561.26 million 36
1900 STATE, DEPARTMENT OF 541,294,928.83 541.29 million 4,745
1700 DEPT OF THE NAVY 334,024,932.62 334.02 million 984
1501 OFFICES, BOARDS AND DIVISIONS 307,836,779.91 307.84 million 200
7529 NATIONAL INSTITUTES OF HEALTH 106,136,194.45 106.14 million 926
7523 CENTERS FOR DISEASE CONTROL AND PREVENTION 92,749,784.62 92.75 million 88
1549 FEDERAL BUREAU OF INVESTIGATION 73,326,393.90 73.33 million 495

Insight

CDW GOVERNMENT LLC’s obligations over the last 10 years total $5.50 billion across 21,205 awards, with the largest concentrations at the Department of the Army ($1.11 billion; 4,933 awards) and the Federal Aviation Administration ($1.08 billion; 3,118 awards). The top five agencies account for a substantial share of total obligated dollars, indicating a concentrated customer base anchored in defense, aviation, and civilian federal demand. Award counts are uneven across agencies, with the U.S. Census Bureau standing out for high obligated value from only 36 awards, suggesting a small number of large-dollar actions.

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 10 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 2,196,964,985.16 2.20 billion 8,657
541519 OTHER COMPUTER RELATED SERVICES 1,483,024,022.32 1.48 billion 5,226
541512 COMPUTER SYSTEMS DESIGN SERVICES 660,211,846.38 660.21 million 2,181
334210 TELEPHONE APPARATUS MANUFACTURING 508,305,306.78 508.31 million 1,336
443120 COMPUTER AND SOFTWARE STORES 362,881,077.23 362.88 million 607
423430 COMPUTER AND COMPUTER PERIPHERAL EQUIPMENT AND SOFTWARE MERCHANT WHOLESALERS 175,927,138.33 175.93 million 1,420
511210 SOFTWARE PUBLISHERS 37,392,038.68 37.39 million 294
334220 RADIO AND TELEVISION BROADCASTING AND WIRELESS COMMUNICATIONS EQUIPMENT MANUFACTURING 24,807,068.28 24.81 million 122
423690 OTHER ELECTRONIC PARTS AND EQUIPMENT MERCHANT WHOLESALERS 14,891,432.50 14.89 million 20
611420 COMPUTER TRAINING 8,582,420.38 8.58 million 11

Insight

Over the last 10 years, CDW GOVERNMENT LLC’s obligations of $5.50 billion across 21,205 awards are concentrated in a small set of NAICS codes, led by 334111 Electronic Computer Manufacturing ($2.20 billion; 8,657 awards) and 541519 Other Computer Related Services ($1.48 billion; 5,226 awards). These two categories alone account for a substantial share of total obligated value, with additional material activity in 541512 Computer Systems Design Services ($660.21 million) and 334210 Telephone Apparatus Manufacturing ($508.31 million). The remaining top NAICS categories are notably smaller in value, indicating a procurement profile centered on computer hardware, related services, and systems support rather than broad diversification.

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 10 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
2020 784,006,601.94 784.01 million 2,775
2019 1,184,790,241.30 1.18 billion 2,303
2018 678,575,140.32 678.58 million 3,022
2017 817,573,632.60 817.57 million 3,695
2016 194,771,839.78 194.77 million 721

Insight

CDW GOVERNMENT LLC (CAGE 1KH72) obligated $5.50 billion across 21,205 awards over the last 10 years, with an average award value of $259.5K. Annual obligations were highly concentrated in 2019 and 2020, which together accounted for roughly $1.97 billion, followed by lower but still substantial levels in 2021–2025. Award volume peaked in 2017 at 3,695 awards, while obligation value peaked in 2019 at $1.18 billion, indicating a shift from higher transaction counts to larger-dollar obligations in later years.

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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.