Business surveys - NACE Rev. 2 activity - Financial services - monthly data - ei_bsbu_m_r2

Data - Eurostat

Info

Last observation: 2026M08 (N = 761)

First observation: 1980M01 (N = 76)

Last data update: 28 août 2026, 13:42. Last compile: 01 sept. 2026, 23:40

Structure

Construction Confidence Indicator

France, Germany, Italy, Spain

Code
ei_bsbu_m_r2 |>
  filter(geo %in% c("FR", "DE", "IT", "ES"),
         indic == "BS-CCI-BAL",
         s_adj == "SA") |>
  month_to_date() |>
  filter(date >= as.Date("1990-01-01")) |>
  left_join(colors, by = c("Geo" = "country")) |>
  ggplot() + geom_line(aes(x = date, y = values, color = color)) +
  theme_minimal() + scale_color_identity() + add_flags +
  scale_x_date(breaks = as.Date(paste0(seq(1990, 2100, 5), "-01-01")),
               labels = date_format("%Y")) +
  xlab("") + ylab("Construction confidence indicator (balance, pp)") +
  geom_hline(yintercept = 0, linetype = "dashed", color = "black")

France: Factors Limiting Building Activity

Code
ei_bsbu_m_r2 |>
  filter(geo == "FR",
         indic %in% c("BS-FLBA2-PC", "BS-FLBA4-PC", "BS-FLBA5-PC", "BS-FLBA7-PC"),
         s_adj == "NSA") |>
  month_to_date() |>
  filter(date >= as.Date("2000-01-01")) |>
  ggplot() + geom_line(aes(x = date, y = values, color = Indic)) +
  theme_minimal() +
  theme(legend.position = "right", legend.title = element_blank()) +
  scale_x_date(breaks = as.Date(paste0(seq(1990, 2100, 5), "-01-01")),
               labels = date_format("%Y")) +
  xlab("") + ylab("Share of respondents citing factor (%)")

Latest Month by Country

Code
latest_m <- ei_bsbu_m_r2 |>
  filter(indic == "BS-CCI-BAL",
         s_adj == "SA",
         geo %in% c("FR", "DE", "IT", "ES", "EA20", "EU27_2020"),
         !is.na(values)) |>
  summarise(m = max(time)) |>
  pull(m)

ei_bsbu_m_r2 |>
  filter(geo %in% c("FR", "DE", "IT", "ES", "EA20", "EU27_2020"),
         s_adj == "SA",
         indic %in% c("BS-CCI-BAL", "BS-CEME-BAL", "BS-COB-BAL", "BS-CPE-BAL", "BS-CTA-BAL"),
         time == latest_m) |>
  select(Indic, Geo, values) |>
  spread(Geo, values) |>
  print_table_conditional()
Indic European Union - 27 countries (from 2020) France Germany Italy Spain
Building activity development over the past 3 months -1.9 -19.5 -11.1 -0.9 7.1
Construction confidence indicator -6.7 -18.2 -14.3 2.6 3.7
Employment expectations over the next 3 months - construction 3.0 -3.2 -0.9 9.2 -0.6
Evolution of the current overall order books -16.4 -33.3 -27.6 -4.0 8.0
Price expectations over the next 3 months 9.1 -8.2 10.0 13.8 5.6

indic

French

Code
indic <- read_parquet("indic_fr.parquet")
ei_bsbu_m_r2 |>
  
  group_by(indic, Indic) |>
  summarise(Nobs = n()) |>
  arrange(-Nobs) |>
  print_table_conditional()
indic Indic Nobs
BS-CEME-BAL Employment expectations over the next 3 months - construction 27952
BS-COB-BAL Evolution of the current overall order books 27876
BS-CCI-BAL Construction confidence indicator 27844
BS-CTA-BAL Building activity development over the past 3 months 27534
BS-CPE-BAL Price expectations over the next 3 months 26796
BS-FLBA4-PC Factors limiting building activity - shortage of labour 22608
BS-FLBA1-PC Factors limiting building activity - none 22601
BS-FLBA5-PC Factors limiting building activity - shortage of material and/or equipment 22435
BS-FLBA3-PC Factors limiting building activity - weather conditions 22254
BS-FLBA2-PC Factors limiting building activity - insufficient demand 22034
BS-FLBA6-PC Factors limiting building activity - other 21864
BS-FLBA7-PC Factors limiting building activity - financial constraints 19342