FISHER SAND & GRAVEL CO. recorded 25 award actions in the last 5 years with total obligated value of -857.10 million. Activity was concentrated in the Department of the Army and U.S. Customs and Border Protection, with highway, street, and bridge construction as the largest NAICS category by obligated value.
Federal Contractor
FISHER SAND & GRAVEL CO. Federal Contract Obligations (Last 5 Years)
Federal procurement profile for FISHER SAND & GRAVEL CO. (CAGE 1TBR7, UEI DGT8NKKG9NR3) covering obligations and awards over the last 5 years.
Negative obligated values reflect de-obligations or downward adjustments in the underlying FPDS data, and annual totals include both positive and negative actions.
About FISHER SAND & GRAVEL CO. federal contract activity
FISHER SAND & GRAVEL CO. (CAGE 1TBR7, UEI DGT8NKKG9NR3) recorded -$857.10 million in obligated value across 25 FPDS awards over the last 5 years, for an average award value of -$34.28 million. The negative obligated total suggests the dataset includes deobligations, downward adjustments, or cancellations that materially reduced net obligation value over the period.
Agency mix and customer concentration
Award activity is concentrated in two agencies: the Department of the Army accounts for -$700.76 million across 11 awards, and U.S. Customs and Border Protection accounts for -$156.35 million across 10 awards. The International Boundary and Water Commission: U.S.-Mexico shows 4 awards with zero net obligated value, indicating activity that did not carry positive net obligation in the reported window.
Industry profile based on NAICS activity
The vendor’s obligation base is aligned primarily to highway, street, and bridge construction (NAICS 237310), which represents -$700.76 million across 11 awards. Commercial and institutional building construction (NAICS 236220) contributes -$156.35 million across 10 awards, while other heavy and civil engineering construction (NAICS 237990) shows 4 awards with zero net obligated value.
Annual contract trend over the analysis window
Annual obligations were highly uneven, with a sharp negative result in 2025 at -$424.25 million across 5 awards after a large negative position in 2021 (-$272.27 million across 9 awards) and 2022 (-$182.96 million across 6 awards). 2023 is the only year with positive net obligated value, at $23.10 million across 4 awards, while 2024 was near flat at -$723.20 thousand across 1 award.
How to interpret this page
This summary is based on FPDS award records associated with the vendor’s CAGE code 1TBR7 and UEI DGT8NKKG9NR3 over the last 5 years. Obligated values are shown as reported in the source data and may include negative amounts from modifications, deobligations, or cancellations; agency and NAICS rankings reflect total obligated value and award counts within the 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 = '1TBR7'
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 |
|---|---|---|---|---|
| 19BM | INTERNATIONAL BOUNDARY AND WATER COMMISSION: U.S.-MEXICO | 0.00 | 0.00 | 4 |
| 7014 | U.S. CUSTOMS AND BORDER PROTECTION | -156,345,980.50 | -156.35 million | 10 |
| 2100 | DEPT OF THE ARMY | -700,757,136.57 | -700.76 million | 11 |
Insight
Over the last 5 years, FISHER SAND & GRAVEL CO. (CAGE 1TBR7) received 25 awards totaling -$857.10 million, with obligations concentrated in two agencies. The DEPT OF THE ARMY accounted for the largest share at -$700.76 million across 11 awards, while U.S. CUSTOMS AND BORDER PROTECTION obligated -$156.35 million across 10 awards. INTERNATIONAL BOUNDARY AND WATER COMMISSION: U.S.-MEXICO had 4 awards with no obligated value reported, indicating award activity without recorded obligation in this window.
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 = '1TBR7'
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 |
|---|---|---|---|---|
| 237990 | OTHER HEAVY AND CIVIL ENGINEERING CONSTRUCTION | 0.00 | 0.00 | 4 |
| 236220 | COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION | -156,345,980.50 | -156.35 million | 10 |
| 237310 | HIGHWAY, STREET, AND BRIDGE CONSTRUCTION | -700,757,136.57 | -700.76 million | 11 |
Insight
FISHER SAND & GRAVEL CO. shows strong concentration in NAICS 237310, Highway, Street, and Bridge Construction, which accounts for -$700.76 million across 11 awards and the vast majority of the last 5 years’ obligated value. NAICS 236220, Commercial and Institutional Building Construction, is a secondary area with -$156.35 million across 10 awards, while NAICS 237990 has 4 awards but no obligated value. Overall, the portfolio is heavily weighted toward highway and bridge work, with limited diversification outside that construction segment.
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 = '1TBR7'
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 | -424,254,527.98 | -424.25 million | 5 |
| 2024 | -723,201.50 | -723.20 thousand | 1 |
| 2023 | 23,102,279.50 | 23.10 million | 4 |
| 2022 | -182,955,279.00 | -182.96 million | 6 |
| 2021 | -272,272,388.09 | -272.27 million | 9 |
Insight
Over the last 5 years, FISHER SAND & GRAVEL CO. (CAGE 1TBR7) recorded $857.10 million in net obligated value across 25 awards, with average award value of -$34.28 million. Obligations are highly concentrated in negative years, led by 2025 at -$424.25 million and 2021 at -$272.27 million, with 2022 also materially negative at -$182.96 million. The only positive year in the period was 2023 at $23.10 million across 4 awards, while 2024 was near flat at -$723.20 thousand, indicating a volatile year-to-year funding pattern.
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.