Focal Point
Multiple Subhead stylesheet

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/9291038331

March 07, 2005, 12:38 PM
Kamesh
Multiple Subhead stylesheet
Hi,
Can anybody tell how I can specify the multiple subhead in stylesheet.

example
TABLE FILE CAR
PRINT *
BY SORT1
BY SORT2
ON SORT1 SUBHEAD
"FIRST SORT"
ON SORT2 SUBHEAD
"SECOND SORT"
ON TABLE SET STYLE *
TYPE=SUBHEAD,LINE=1,BACKCOLOR=GRAY,$
ENDSTYLE
END
-EXIT

If I mention a report like this, both sort1 and sort2 subhead is coloured gray but I dont want that. I want to colour only SORT1.

-Kamesh
March 07, 2005, 02:45 PM
susannah
TYPE=SUBHEAD,COLUMN=SORT1,...

oh ignore me, Razzer CurtisA is right, its BY=
March 07, 2005, 02:50 PM
reFOCUSing
You could also use the following:

TYPE=SUBHEAD,BY=SORT1,LINE=1,STYLE=BOLD,$
TYPE=SUBHEAD,BY=SORT2,LINE=1,STYLE=UNDERLINE,$
March 08, 2005, 12:38 AM
Kamesh
that works..thanks