Spending Trends

North Carolina Federal Contract Spending Trends

North Carolina Federal 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 9.34. Across the visible range, the series changed by 93,300.00%.

Federal Contract Spending Spending Trends Spending Series Series

Updated 03/20/2026

Latest Period
2025
9.34
Visible Change
93,300.00%
9.33
Peak Period
2025
9.34
Trend Direction
Up
Very Strong

Analysis

The latest visible point is 2025 at 9.34. Across the visible range, the series changed by 93,300.00%.

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

North Carolina Federal Contract Spending Trends tracks federal contract spending over time in FPDS-derived data.

Key takeaway: The latest visible point is 2025 at 9.34. Overall visible change is 93,300.00%.

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

-- North Carolina Federal 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,
        content__award__placeOfPerformance__principalPlaceOfPerformance__stateCode AS state_code
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__relevantContractDates__signedDate != ''
        AND state_code = 'NC'
)
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
1976 0.01 1 10616140
1978 0.00 1 150000
1979 0.74 6312 118455
1980 0.85 8862 96156
1981 0.96 8527 113374
1982 1.01 9964 102107
1983 0.92 6377 145570
1984 1.24 6542 189724
1985 1.24 7073 176229
1986 1.33 6733 198204
1987 1.54 7523 204713
1988 1.60 7102 225650
1989 1.47 5518 267651
1990 1.51 8333 181448
1991 2.05 10520 194989
1992 2.00 12007 167017
1993 1.49 10446 142959
1994 1.52 11801 129183
1995 1.69 9993 169259
1996 2.18 14372 151735
1997 1.72 11164 154372
1998 1.81 10700 169366
1999 1.78 9867 181046
2000 2.32 11870 195557
2001 2.51 12242 205798
2002 2.42 13943 173622
2003 3.33 20542 162170
2004 3.37 32513 103764
2005 4.53 48565 93279
2006 4.38 88308 49678
2007 4.58 84554 54178
2008 5.24 89927 58338
2009 5.53 56162 98589
2010 5.46 56885 96122
2011 5.80 56511 102695
2012 5.39 58379 92410
2013 5.01 37143 135018
2014 4.90 37046 132351
2015 4.93 96171 51334
2016 4.64 106544 43601
2017 5.15 109773 46953
2018 6.20 159671 38844
2019 7.02 257199 27314
2020 8.97 267384 33554
2021 6.67 181057 36893
2022 8.60 177841 48372
2023 6.97 184674 37771
2024 7.20 187367 38451
2025 9.34 210561 44389

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
49
First Visible Point
1976
0.01
Mean
3.49
Median
2.42
Max
9.34
2025
Min
0.00
1978
Volatility
2.46
2.46
Rows Returned
49

Series Extremes

Largest Increase
2.14
2024 → 2025 · 29.72%
Largest Decrease
-2.3
2020 → 2021 · -25.64%

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.