Federal Contractor

ADVANTAGED SOLUTIONS, INC. Federal Contract Obligations (Last 5 Years)

FPDS profile for ADVANTAGED SOLUTIONS, INC. (CAGE 37NY3, UEI WD8KKTRJWAZ3) showing 1.14 billion in obligations across 258 award actions over the last 5 years.

ADVANTAGED SOLUTIONS, INC. recorded 1,143,510,498.71 in obligated federal awards over the last 5 years, averaging 4,432,211.23 per action across 258 actions. Most of the activity was with the Defense Logistics Agency, and the largest NAICS share was in computing infrastructure providers and related services.

Generated at 03/21/2026

Analysis period: Last 5 years

Amounts reflect obligated dollars in the selected analysis window and are summarized from FPDS award action records.

CAGE Code
37NY3
UEI
WD8KKTRJWAZ3
Total Obligated
1.14 billion
1,143,510,498.71
Award Actions
258
Average Action Value
4,432,211.23

About ADVANTAGED SOLUTIONS, INC. federal contract activity

ADVANTAGED SOLUTIONS, INC. (CAGE 37NY3, UEI WD8KKTRJWAZ3) recorded $1.14 billion in FPDS obligations across 258 awards over the last 5 years, for an average award value of $4.43 million. The profile is heavily concentrated in federal contracting activity, with a relatively high dollar volume per award indicating a mix of larger task, delivery, or service orders rather than a purely high-transaction, low-dollar pattern.

Agency mix and customer concentration

The Defense Logistics Agency dominates the vendor’s federal footprint, accounting for $972.35 million across 179 awards, or the large majority of total obligations in the period. The next-largest customers are the Department of the Navy at $129.66 million and the Centers for Disease Control and Prevention at $33.27 million, with the remaining agencies representing a much smaller share of spend. This mix suggests a strong defense-led base with limited but notable civilian activity.

Industry profile based on NAICS activity

The vendor’s work is concentrated in computing infrastructure and software-related NAICS codes. NAICS 518210 leads with $652.64 million, followed by 511210 at $259.43 million, while 333922 adds a substantial manufacturing component at $196.61 million. Smaller amounts in 541519 and 443120 indicate additional IT services and commercial technology distribution activity, but the portfolio is clearly centered on technology and infrastructure support.

Annual contract trend over the analysis window

Annual obligations peaked in 2024 at $314.69 million, then declined to $156.98 million in 2025 year-to-date, after registering $219.31 million in 2023 and $239.04 million in 2022. Award counts were comparatively stable, ranging from 45 to 66 per year, which points to volatility in contract value more than in procurement frequency. The data indicate a high-value relationship that accelerated in 2024 and moderated in the current year.

How to interpret this page

This page summarizes FPDS obligations tied to ADVANTAGED SOLUTIONS, INC. using the provided CAGE code and UEI over the last 5 years. Totals, counts, averages, agency mix, NAICS mix, and annual trend figures are derived from the supplied dataset and reflect obligated dollars, not necessarily outlays or final contract completion value. No additional sources or assumptions were used beyond the context provided.

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 = '37NY3'
        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
97AS DEFENSE LOGISTICS AGENCY 972,351,085.49 972.35 million 179
1700 DEPT OF THE NAVY 129,662,469.26 129.66 million 25
7523 CENTERS FOR DISEASE CONTROL AND PREVENTION 33,265,556.52 33.27 million 17
2100 DEPT OF THE ARMY 3,490,170.36 3.49 million 10
97DH DEFENSE HEALTH AGENCY (DHA) 2,702,752.88 2.70 million 8
5700 DEPT OF THE AIR FORCE 838,907.05 838.91 thousand 5
97AZ DEFENSE COMMISSARY AGENCY (DECA) 629,518.05 629.52 thousand 3
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) 561,238.23 561.24 thousand 8
1341 NATIONAL INSTITUTE OF STANDARDS AND TECHNOLOGY 9,525.50 9.53 thousand 2
6800 ENVIRONMENTAL PROTECTION AGENCY -724.63 -724.63 1

Insight

ADVANTAGED SOLUTIONS, INC. (CAGE 37NY3) is highly concentrated in the Defense Logistics Agency, which accounts for 972.35 million of 1.14 billion in obligated value and 179 of 258 awards over the last 5 years. The Department of the Navy is the only other major obligating agency at 129.66 million across 25 awards, while the remaining agencies each account for relatively small shares, with most below 3.5 million. This distribution indicates a strong dependency on a single civilian/defense customer base, with limited but broader secondary activity across DoD and a few non-DoD agencies.

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 = '37NY3'
        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
518210 COMPUTING INFRASTRUCTURE PROVIDERS, DATA PROCESSING, WEB HOSTING, AND RELATED SERVICES 652,643,792.03 652.64 million 55
511210 SOFTWARE PUBLISHERS 259,434,594.88 259.43 million 108
333922 CONVEYOR AND CONVEYING EQUIPMENT MANUFACTURING 196,606,830.21 196.61 million 35
541519 OTHER COMPUTER RELATED SERVICES 31,128,669.01 31.13 million 56
443120 COMPUTER AND SOFTWARE STORES 3,694,534.13 3.69 million 2
532420 OFFICE MACHINERY AND EQUIPMENT RENTAL AND LEASING 2,803.08 2.80 thousand 1
334118 COMPUTER TERMINAL AND OTHER COMPUTER PERIPHERAL EQUIPMENT MANUFACTURING -724.63 -724.63 1

Insight

Over the last 5 years, ADVANTAGED SOLUTIONS, INC. (CAGE 37NY3) received 1.14 billion across 258 awards, with obligations concentrated in a small set of NAICS codes. NAICS 518210 accounted for 652.64 million and 55 awards, followed by 511210 at 259.43 million and 108 awards and 333922 at 196.61 million and 35 awards; together these three NAICS codes represent the vast majority of obligated dollars. Activity is also distributed across 541519 with 31.13 million and 56 awards, while the remaining NAICS codes are immaterial in dollar value, indicating a highly concentrated obligation profile with moderate award-count dispersion.

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 = '37NY3'
        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 156,980,305.33 156.98 million 47
2024 314,686,025.85 314.69 million 45
2023 219,314,229.91 219.31 million 66
2022 239,041,713.82 239.04 million 45
2021 213,488,223.80 213.49 million 55

Insight

ADVANTAGED SOLUTIONS, INC. obligated $1.14 billion across 258 awards over the last 5 years, with an average award value of $4.43 million. Obligations are moderately concentrated in 2024, which accounts for the highest annual value at $314.69 million, while annual funding remains otherwise relatively stable in the $156.98 million to $239.04 million range from 2021 through 2025. Award counts are dispersed across the period, with the highest volume in 2023 at 66 awards and lower counts in the other years, indicating uneven annual award frequency relative to 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.