Hi ACS folks,
Could you please help with this question. When working with say a Total Population (b01003) table and choosing Geography, how could I choose a Block Group level and go across all counties in a state? It seems too cumbersome to have to download data county by county in a state like Texas, especially when I need some 35 tables.
Thank you very much for any help!
Oksana Nekrashevych
Something like:
data acs2018.combined;
merge
acs2018.usbgs00_07
acs2018.usbgs00_07_moes
acs2018.usbgs08
[...]
by GeoID;
run;
Pretty basic stuff.
I don't know why this pasted as a picture -- hope it works for you