Focal Point
drill down on grand total

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

January 04, 2005, 08:49 PM
RB
drill down on grand total
Hi,

How do you make the drilldown to be only on the grandtotal title instead of the drill down on the whole line?
For example,

my report has:

grandtotalofxyz 1000 2000 3000 4000

now when I write the code as,

TYPE=GRANDTOTAL, FOCEXEC=XYZ,$

it highlights the whole line to be drilldown. I want to show the drilldown only on
"grandtotalofxyz" and not on the numbers. Is this possible?
January 05, 2005, 10:34 AM
susannah
TYPE=GRANDTOTAL,COLUMN=XXX,FOCEXEC=XYZ,$
where xxx is the fieldname you want to dd on.
January 05, 2005, 12:37 PM
RB
Hi Susannah,

I guess you got my question wrong. I do not want to drill down on any of the fields or columns.
I just want to drill down on the title of the grandtotal which is

"grandtotalofxyz"

in my example.
March 29, 2005, 06:14 AM
<Sugiyama>
I think so.

TABLE FILE CAR
PRINT CAR MODEL SEATS
BY COUNTRY SUBTOTAL
ON TABLE NOTOTAL
ON TABLE SUBFOOT
"GRANDTOTALOFXYZ <TOT.SEATS"
ON TABLE SET STYLE *
TYPE=TABFOOTING,HEADALIGN=BODY,$
TYPE=TABFOOTING,OBJECT=TEXT,COLSPAN=3,
FOCEXEC=XYZ,$
TYPE=TABFOOTING,OBJECT=FIELD,JUSTIFY=RIGHT,$
ENDSTYLE
END

trying that.