Spending Trends

Department of Health and Human Services Contract Spending Trends

Department of Health and Human Services Contract Spending Trends shows how federal contract spending changes across the visible time series in FPDS-derived procurement data.

The latest visible point is 2025 at 21.29. Across the visible range, the series changed by 2,434.52%.

Federal Contract Spending Spending Trends Spending Series Series

Updated 03/20/2026

Latest Period
2025
21.29
Visible Change
2,434.52%
20.45
Peak Period
2020
34.86
Trend Direction
Up
Very Strong

Analysis

The latest visible point is 2025 at 21.29. Across the visible range, the series changed by 2,434.52%.

Why it matters: Use this page to evaluate how federal contract spending levels shift over time and identify inflection points.

Methodology: The query returns a structured time series, detects a period column and a primary numeric metric, and computes visible-series statistics such as latest value, peak, low, and overall change.

Commentary

Department of Health and Human Services Contract Spending Trends tracks federal contract spending over time in FPDS-derived data.

Key takeaway: The latest visible point is 2025 at 21.29. Overall visible change is 2,434.52%.

Analyst note: This page is best used for directional review, turning points, and quick comparison against related time windows or scopes.

Trend Chart

This chart plots Federal Contract Spending over the visible time series returned by the query.

Query Used

-- Department of Health and Human Services Contract Spending Trends
SELECT
    fiscal_year,
    round(sum(obligated_amount) / 1000000000, 2) AS spending_billion_usd,
    count() AS award_count,
    round(sum(obligated_amount) / count(), 0) AS avg_award_size
FROM
(
    SELECT
        if(
            toUInt8(substring(content__award__relevantContractDates__signedDate, 6, 2)) >= 10,
            toUInt16(substring(content__award__relevantContractDates__signedDate, 1, 4)) + 1,
            toUInt16(substring(content__award__relevantContractDates__signedDate, 1, 4))
        ) AS fiscal_year,
        content__award__dollarValues__obligatedAmount AS obligated_amount
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__relevantContractDates__signedDate != ''
        AND content__award__purchaserInformation__contractingOfficeAgencyID__departmentName = 'HEALTH AND HUMAN SERVICES, DEPARTMENT OF'
)
WHERE fiscal_year < toYear(today())
GROUP BY fiscal_year
ORDER BY fiscal_year ASC

Trend Table

This table shows the structured time series returned by the query.

Fiscal Year Spending Billion Usd Award Count Avg Award Size
1979 0.84 6400 132268
1980 1.03 7434 139164
1981 0.68 6000 114915
1982 0.49 5840 84296
1983 0.62 7232 85763
1984 0.56 7522 75104
1985 0.40 5953 67791
1986 0.37 2698 138021
1987 0.72 3968 181860
1988 0.62 3021 207110
1989 1.17 3569 330443
1990 1.24 4102 304082
1991 2.01 9903 203438
1992 2.29 10877 211175
1993 2.10 10174 207064
1994 1.70 7366 231620
1995 2.47 11712 211529
1996 3.31 10238 323979
1997 3.09 10640 290500
1998 3.89 12319 316111
1999 4.33 13579 319145
2000 5.45 15975 341714
2001 5.17 16969 304829
2002 6.79 19453 349301
2003 7.68 23004 334199
2004 8.19 40425 202616
2005 8.73 72159 121103
2006 11.71 72285 162090
2007 13.79 64476 213976
2008 13.42 60121 223273
2009 18.58 68317 272012
2010 17.90 80083 223641
2011 19.18 81589 235147
2012 18.41 82013 224495
2013 19.84 82977 239111
2014 21.63 87692 246707
2015 19.76 84148 234829
2016 19.97 80841 247107
2017 22.58 83155 271650
2018 21.49 77119 278683
2019 22.12 68005 325276
2020 34.86 72768 479127
2021 34.26 67445 508032
2022 33.38 69545 480112
2023 33.35 64356 518342
2024 29.86 61654 484450
2025 21.29 50340 422994

How This Trend Is Built

Measure how a selected procurement metric changes across time.

Query structure

  • The query selects a time dimension used as the x-axis for the trend.
  • It calculates or returns a numeric metric for each visible period.
  • The result is interpreted as a chronological series for trend analysis.
  • The metric focuses on obligated dollars or a directly related spending aggregate.

Included fields

  • fiscal_year — Defines the chronological unit used for the trend series.
  • spending_billion_usd — Defines the main value plotted and analyzed over time.
  • award_count — Provides additional numeric context that can support interpretation.
  • avg_award_size — Provides additional numeric context that can support interpretation.

How to use this trend

  • trend direction analysis
  • time-series review
  • federal procurement timing analysis
  • spending trajectory review
  • budget pattern review

Computed Metrics

Series Points
47
First Visible Point
1979
0.84
Mean
11.13
Median
6.79
Max
34.86
2020
Min
0.37
1986
Volatility
10.83
10.83
Rows Returned
47

Series Extremes

Largest Increase
12.74
2019 → 2020 · 57.59%
Largest Decrease
-8.57
2024 → 2025 · -28.70%

Related Pages

Method Notes

  • Trend interpretation is based on the returned query result set ordered by the detected period column.
  • Change metrics compare the first visible point and the latest visible point in the series.
  • Volatility is based on the standard deviation of the visible numeric series.

Use FPDS Query for deeper trend analysis

Go beyond the published time series with custom SQL, broader filters, saved queries, and deeper procurement analysis across agencies, vendors, industries, states, contract structures, and competitive segments.

Continue from this trend page into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.