Dear Stata users,

I have data with long variable names. When I want to use "summarize", it abbreviates the variable names.

I heard that tabstat works better. However, in contrast to summarize, tabstat requires a varlist
Code:
describe, varlist
works fine. But

Code:
tabstat, varlist
Does not work. It says varlist required.

Code:
tabstat varlist
Gives, varlist not found. How do I get tabstat to display all variables?

Is there an easy way to put all variables in a varlist?

Tom