I am having trouble getting my output to look how I want it when using headers which span columns in PROC REPORT using ODS to RTF;
e.g.
PROC REPORT data=somedata;
columns ("Category A" col1 col2) col3 col4 col5;
In my style sheet I have:
style table from container /
frame = hsides
to give me a line at the top and bottom of the output, and a line underneath the header row.
I would also like a line underneath the spanning header title (i.e. a line under the "Category A" cell).
I would normally achieve this outside of ODS using:
OPTIONS formchar="__", and using "__Category A__" in the PROC REPORT call.
I am sure that what I require should be possible - however I do not know how to do it.
I would appreciate any help you can provide.
Many thanks.