Hi, As Tim pointed out, WIDTH= option of PROC REPORT only has an impact on LISTING output. Since the OP said he wanted HTML output, the WIDTH= option would not work. Instead, a combination of changing the default split character (a /) and using CELLWIDTH should get him what he wants. In the attached screen shots, examp_width1.jpg shows code that used LISTING and HTML. Without WIDTH=, the label 'Gender' does behave as you describe, but only for the LISTING output. As you can see, in the HTML output, the label appears correctly. However, because the split character is defined as / (the default), the label string for NAME splits at the slash in the label. With the SPLIT= redefined, and an explicit CELLWIDTH, the header for NAME is as desired and the header for SEX is fine without a WIDTH= option. The units for CELLWIDTH can be specified as pixels, points, inches or centimeters. I usually don't mess with pixels and I just go with inches as the unit. In addition to WIDTH=, there are other PROC REPORT options that only work in the LISTING destination, these are: FLOW, PANELS, BOX, DOL, DUL, OL, UL, SKIP, HEADLINE, HEADSKIP, WIDTH, SPACE, LS, PS. See this Tech Support note for more information: http://support.sas.com/kb/2/549.html http://support.sas.com/kb/23/671.html http://support.sas.com/rnd/base/ods/templateFAQ/report1.html cynthia
... View more