Quick Stata tip: use "recol" to shorten the column width of variables in the Data Editor. This is useful for really long strings.

ssc install recol
sysuse census, clear
replace state = "ABCDEFGASDFASDFSADF" in 1
recol state, maxwidth(7) compress
Post image

Comments