Federal Contractor

WALGREEN CO. Federal Contract Obligations (Last Year)

WALGREEN CO. (CAGE 1FRS4, UEI HRE3UMLEM2P5) shows 20 federal award actions in the last full year, with -$63.68 million obligated.

In the last full year, WALGREEN CO. recorded 20 federal award actions and a net obligated total of -$63.68 million. Most activity was tied to the Indian Health Service and to NAICS 325412 Pharmaceutical Preparation Manufacturing, while the largest single obligation change was associated with the Centers for Disease Control and Prevention under NAICS 621999.

Generated at 03/21/2026

Analysis period: Last full year

Totals reflect the provided analysis window and may include deobligations, which can produce negative obligated values.

CAGE Code
1FRS4
UEI
HRE3UMLEM2P5
Total Obligated
-63.68 million
-63,679,025.24
Award Actions
20
Average Action Value
-3,183,951.26

About WALGREEN CO. federal contract activity

WALGREEN CO. recorded -$63.68 million in obligated value across 20 FPDS awards during the last full year, yielding a negative average award value of -$3.18 million. The net total is heavily influenced by a single large negative obligation tied to the Centers for Disease Control and Prevention, while most other activity is comparatively small in magnitude.

Agency mix and customer concentration

Award activity was concentrated with the Indian Health Service, which accounted for 17 of 20 awards and $412.33 thousand in obligated value. The Centers for Disease Control and Prevention represented the dominant dollar impact with -$64.09 million from one award, while the Administration for Strategic Preparedness and Response had two awards with zero obligated value.

Industry profile based on NAICS activity

The mix is led by NAICS 325412, Pharmaceutical Preparation Manufacturing, with 16 awards totaling $431.55 thousand. Smaller activity appears under NAICS 541714 and 446110, but the overall result is driven by NAICS 621999, All Other Miscellaneous Ambulatory Health Care Services, which carries -$64.09 million from a single award.

Annual contract trend over the analysis window

The annual view shows all reported obligations in 2025, with 20 awards totaling -$63.68 million. Because the dataset covers only one year, it supports a point-in-time assessment rather than a multi-year trend analysis, and the negative balance is dominated by one large obligation adjustment.

How to interpret this page

This summary uses the provided FPDS Query analysis window of last full year and aggregates the reported obligation amounts, award counts, agency groupings, and NAICS groupings for WALGREEN CO. Values are presented as supplied, including negative obligations where recorded, and no additional normalization or interpretation beyond the source data is applied.

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 = '1FRS4'
        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
7527 INDIAN HEALTH SERVICE 412,332.41 412.33 thousand 17
7505 ADMINISTRATION FOR STRATEGIC PREPAREDNESS AND RESPONSE 0.00 0.00 2
7523 CENTERS FOR DISEASE CONTROL AND PREVENTION -64,091,357.65 -64.09 million 1

Insight

WALGREEN CO. (CAGE 1FRS4) obligations over the last full year were highly concentrated in the Centers for Disease Control and Prevention, which accounted for -$64.09 million across 1 award and drove nearly all of the vendor’s -$63.68 million net obligated total. The Indian Health Service was the only positive-obligation agency in this period, with $412.33 thousand across 17 awards, indicating a much smaller, more distributed award pattern. The Administration for Strategic Preparedness and Response recorded 2 awards with $0 obligated, contributing volume but no obligation value.

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 = '1FRS4'
        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
325412 PHARMACEUTICAL PREPARATION MANUFACTURING 431,545.07 431.55 thousand 16
541714 RESEARCH AND DEVELOPMENT IN BIOTECHNOLOGY (EXCEPT NANOBIOTECHNOLOGY) 0.00 0.00 2
446110 PHARMACIES AND DRUG STORES -19,212.66 -19.21 thousand 1
621999 ALL OTHER MISCELLANEOUS AMBULATORY HEALTH CARE SERVICES -64,091,357.65 -64.09 million 1

Insight

Over the last full year, WALGREEN CO. (CAGE 1FRS4) had 20 awards totaling -$63.68 million, with obligations heavily concentrated in NAICS 621999, which accounts for -$64.09 million across one award and drives the overall negative total. NAICS 325412 was the most active code by volume of awards, with 16 actions totaling $431.55 thousand, indicating many small obligations relative to the large negative outlier. Remaining activity was limited to one award in NAICS 446110 at -$19.21 thousand and two awards in NAICS 541714 with no obligated dollars.

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 = '1FRS4'
        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 -63,679,025.24 -63.68 million 20

Insight

In the last full year, WALGREEN CO. (CAGE 1FRS4) recorded -$63.68 million in total obligated value across 20 awards, for an average award value of -$3.18 million. This indicates a relatively concentrated award profile with obligations spread across a limited number of actions rather than a high-volume transaction base. Because only one year is provided, the annual trend cannot be assessed for growth or decline, but the current period reflects substantial negative obligated value at the vendor level.

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.