I am trying to reshape county-wise GDP data from wide to long. Since the data is imported from Excel the column names are given as F,..,Z, and AA, .., AL
forvalues i = F/Z{
local j = 1990/2010
ren `i' `j', force
}
this is what I am trying to do
forvalues i = F/Z{
local j = 1990/2010
ren `i' `j', force
}
this is what I am trying to do
Comment