Federal Contractor

ADVANTAGED SOLUTIONS, INC. Federal Contract Obligations (Last Year)

ADVANTAGED SOLUTIONS, INC. (CAGE 37NY3, UEI WD8KKTRJWAZ3) received 156.98 million in obligations across 47 award actions in the last full year.

In the last full year, ADVANTAGED SOLUTIONS, INC. recorded 156,980,305.33 in total obligations across 47 award actions, for an average action value of 3,340,006.49. Most of the activity came from the Defense Logistics Agency, with additional obligations from CDC, DISA, the Department of the Navy, and the Department of the Air Force.

Generated at 03/21/2026

Analysis period: Last full year

Agency, NAICS, and annual totals reflect the provided analysis window and may not reconcile to separate FPDS extracts after rounding.

CAGE Code
37NY3
UEI
WD8KKTRJWAZ3
Total Obligated
156.98 million
156,980,305.33
Award Actions
47
Average Action Value
3,340,006.49

About ADVANTAGED SOLUTIONS, INC. federal contract activity

ADVANTAGED SOLUTIONS, INC. (CAGE 37NY3, UEI WD8KKTRJWAZ3) recorded $156.98 million in obligated value across 47 FPDS awards in the last full year, for an average award value of $3.34 million. The profile is highly concentrated, with the Defense Logistics Agency accounting for the vast majority of obligations.

Agency mix and customer concentration

The Defense Logistics Agency dominated the vendor's federal business with $149.41 million across 33 awards, representing the core of the award portfolio. The remaining obligations were spread across a smaller set of agencies, led by the Centers for Disease Control and Prevention at $6.66 million, with minimal additional activity at DISA, the Department of the Navy, and the Department of the Air Force.

Industry profile based on NAICS activity

Award activity is concentrated in IT and related services. The largest NAICS category was 518210, Computing Infrastructure Providers, Data Processing, Web Hosting, and Related Services, at $100.66 million across 21 awards, followed by 511210, Software Publishers, at $35.81 million across 15 awards and 541519, Other Computer Related Services, at $6.66 million across 5 awards.

Annual contract trend over the analysis window

The annual trend shows all observed obligations within 2025, totaling $156.98 million across 47 awards. With only one year in the analysis window, the data supports a point-in-time view rather than a multi-year growth or decline assessment.

How to interpret this page

This summary is based on FPDS award records for the last full year and aggregates obligations by vendor, agency, NAICS code, and year. Obligation totals, award counts, and averages are calculated from the provided dataset and should be interpreted as FPDS-reported contract activity for the identified CAGE and UEI.

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 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
97AS DEFENSE LOGISTICS AGENCY 149,406,885.25 149.41 million 33
7523 CENTERS FOR DISEASE CONTROL AND PREVENTION 6,655,987.00 6.66 million 2
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) 503,564.23 503.56 thousand 4
1700 DEPT OF THE NAVY 233,474.00 233.47 thousand 2
5700 DEPT OF THE AIR FORCE 167,781.41 167.78 thousand 1
1341 NATIONAL INSTITUTE OF STANDARDS AND TECHNOLOGY 9,525.50 9.53 thousand 2
2100 DEPT OF THE ARMY 3,087.94 3.09 thousand 3

Insight

Over the last full year, ADVANTAGED SOLUTIONS, INC. received 156.98 million across 47 awards, with obligations highly concentrated at the Defense Logistics Agency. DLA accounted for 149.41 million and 33 awards, representing the clear majority of both dollars and activity. The next largest recipient, CDC, obligated 6.66 million across 2 awards, while all remaining agencies each accounted for less than 0.6 million, indicating a sharply concentrated agency mix with limited dispersion outside DLA.

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 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
518210 COMPUTING INFRASTRUCTURE PROVIDERS, DATA PROCESSING, WEB HOSTING, AND RELATED SERVICES 100,657,726.53 100.66 million 21
511210 SOFTWARE PUBLISHERS 35,814,983.80 35.81 million 15
333922 CONVEYOR AND CONVEYING EQUIPMENT MANUFACTURING 13,848,520.06 13.85 million 6
541519 OTHER COMPUTER RELATED SERVICES 6,659,074.94 6.66 million 5

Insight

ADVANTAGED SOLUTIONS, INC. shows a concentrated obligation profile in the last full year, with NAICS 518210 accounting for $100.66 million across 21 awards, or roughly 64% of total obligations. NAICS 511210 is the second-largest category at $35.81 million across 15 awards, while the remaining top NAICS codes are materially smaller: 333922 at $13.85 million and 541519 at $6.66 million. Overall, obligations are weighted toward computing infrastructure and software-related work, with limited diversification beyond those areas.

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 1 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

Insight

During the last full year, ADVANTAGED SOLUTIONS, INC. (CAGE 37NY3) received $156.98 million across 47 awards, for an average award value of about $3.34 million. Obligations are fully concentrated in FY 2025 within the 1-year window provided, indicating no year-over-year trend can be assessed from this view. The award profile suggests a moderately distributed portfolio rather than dependence on a single large action.

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