Hi:
Generally, the "row" labels are controlled by the row title space setting, which in the LISTING destination or OUTPUT window is set to 1/4 of line size. So, if you are talking about the LISTING window output, then try either of these things:
1) increase your linesize to 160:
[pre]
options ls=160;
[/pre]
before the TABULATE and see if that helps. If it does help but not enough, then do this in your TABLE statement:
[pre]
table var1 ,
var2*(min mean max) / rts=30;
[/pre]
Note the slash after your last variable and statistic specification and then the RTS option (after a slash). The RTS option should be as long as your string, plus 2 -- so if your string is 28 characters including spaces, then your RTS value would be 30. This extra number is taking into account the divider line at the beginning of the row cells and the divider after the row cells.
If you are NOT talking about the LISTING destination or OUTPUT window, then you should either paste your code into your forum posting and tell us your destination of choice (HTML, RTF, PDF, LISTING) -- because RTS only works for the LISTING window and you would have to use the CELLWIDTH style attribute to change the width of the row title area for other destinations.
Your other option is to try Tech Support who can look at your code AND your data and can help you with your question.
cynthia