Focal Point Banner


As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.

Join the TIBCO Community
TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.

  • From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
  • Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
  • Request access to the private WebFOCUS User Group (login required) to network with fellow members.

Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED] Remove blank line before subfoot

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[SOLVED] Remove blank line before subfoot
 Login/Join
 
Gold member
posted
Is it possible to remove the blank line between the report and the subfoot in this example?

  
TABLE FILE CAR
SUM
     SALES
BY CAR
ON TABLE RECAP
	TOT_SALES/D12 = SALES;
ON TABLE SUBFOOT
"Grand Total<TOT_SALES"
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
$
TYPE=REPORT,
     BORDER-TOP=1.00,
     BORDER-BOTTOM=1.00,
     BORDER-LEFT=1.00,
     BORDER-RIGHT=1.00,
$
TYPE=DATA,
     COLUMN=N1,
     BORDER-TOP-COLOR=GREY,
     BORDER-BOTTOM-COLOR=GREY,
     BORDER-LEFT-COLOR=GREY,
     BORDER-RIGHT-COLOR=GREY,
     FONT='ARIAL',
     SIZE=10,
     STYLE=NORMAL,
$
TYPE=DATA,
     COLUMN=N2,
     BORDER-TOP-COLOR=GREY,
     BORDER-BOTTOM-COLOR=GREY,
     BORDER-LEFT-COLOR=GREY,
     BORDER-RIGHT-COLOR=GREY,
     FONT='ARIAL',
     SIZE=10,
     STYLE=NORMAL,
$
TYPE=TITLE,
     COLUMN=N1,
     BORDER-TOP-COLOR=GREY,
     BORDER-BOTTOM-COLOR=GREY,
     BORDER-LEFT-COLOR=GREY,
     BORDER-RIGHT-COLOR=GREY,
     FONT='ARIAL',
     SIZE=10,
     STYLE=BOLD,
$
TYPE=TITLE,
     COLUMN=N2,
     BORDER-TOP-COLOR=GREY,
     BORDER-BOTTOM-COLOR=GREY,
     BORDER-LEFT-COLOR=GREY,
     BORDER-RIGHT-COLOR=GREY,
     FONT='ARIAL',
     SIZE=10,
     STYLE=BOLD,
$
TYPE=TABFOOTING,
     BORDER-TOP-COLOR=GREY,
     BORDER-BOTTOM-COLOR=GREY,
     BORDER-LEFT-COLOR=GREY,
     BORDER-RIGHT-COLOR=GREY,
     FONT='ARIAL',
     SIZE=10,
     STYLE=BOLD,
     JUSTIFY=RIGHT,
     HEADALIGN=BODY,
$
ENDSTYLE
END

This message has been edited. Last edited by: Joel Elscott,


WebFOCUS 8.2.03
z/OS
 
Posts: 66 | Registered: May 20, 2013Report This Post
Expert
posted Hide Post
  
DEFINE FILE CAR
  DUMMY/A1 = '';
END
TABLE FILE CAR
SUM
     SALES/P12.2C
BY DUMMY NOPRINT
BY CAR
ON DUMMY SUMMARIZE AS 'Grand Total'
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
$
TYPE=SUBTOTAL, STYLE=BOLD, BACKCOLOR=TAN,$


TYPE=REPORT,
     BORDER-TOP=1.00,
     BORDER-BOTTOM=1.00,
     BORDER-LEFT=1.00,
     BORDER-RIGHT=1.00,
$
TYPE=DATA,
     COLUMN=N1,
     BORDER-TOP-COLOR=GREY,
     BORDER-BOTTOM-COLOR=GREY,
     BORDER-LEFT-COLOR=GREY,
     BORDER-RIGHT-COLOR=GREY,
     FONT='ARIAL',
     SIZE=10,
     STYLE=NORMAL,
$
TYPE=DATA,
     COLUMN=N2,
     BORDER-TOP-COLOR=GREY,
     BORDER-BOTTOM-COLOR=GREY,
     BORDER-LEFT-COLOR=GREY,
     BORDER-RIGHT-COLOR=GREY,
     FONT='ARIAL',
     SIZE=10,
     STYLE=NORMAL,
$
TYPE=TITLE,
     COLUMN=N1,
     BORDER-TOP-COLOR=GREY,
     BORDER-BOTTOM-COLOR=GREY,
     BORDER-LEFT-COLOR=GREY,
     BORDER-RIGHT-COLOR=GREY,
     FONT='ARIAL',
     SIZE=10,
     STYLE=BOLD,
$
TYPE=TITLE,
     COLUMN=N2,
     BORDER-TOP-COLOR=GREY,
     BORDER-BOTTOM-COLOR=GREY,
     BORDER-LEFT-COLOR=GREY,
     BORDER-RIGHT-COLOR=GREY,
     FONT='ARIAL',
     SIZE=10,
     STYLE=BOLD,
$
TYPE=TABFOOTING,
     BORDER-TOP-COLOR=GREY,
     BORDER-BOTTOM-COLOR=GREY,
     BORDER-LEFT-COLOR=GREY,
     BORDER-RIGHT-COLOR=GREY,
     FONT='ARIAL',
     SIZE=10,
     STYLE=BOLD,
     JUSTIFY=RIGHT,
     HEADALIGN=BODY,
$
ENDSTYLE
END
-EXIT


Tom Flynn
WebFOCUS 8.1.05 - PROD/QA
DB2 - AS400 - Mainframe
 
Posts: 1972 | Location: Centennial, CO | Registered: January 31, 2006Report This Post
Gold member
posted Hide Post
Thanks Tom! This helps a lot. I ended up using a SUBFOOT, as I have some special formatting that's needed in my live application. Here is the final code:

  
DEFINE FILE CAR
  DUMMY/A1 = '';
END

TABLE FILE CAR
SUM
     SALES/D12
BY DUMMY NOPRINT
BY CAR
ON DUMMY RECAP
	TOT_SALES/D12 = SALES;
ON DUMMY SUBFOOT
"Grand Total<TOT_SALES"
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
$
TYPE=REPORT,
     BORDER-TOP=1.00,
     BORDER-BOTTOM=1.00,
     BORDER-LEFT=1.00,
     BORDER-RIGHT=1.00,
$
TYPE=DATA,
     COLUMN=N1,
     BORDER-TOP-COLOR=GREY,
     BORDER-BOTTOM-COLOR=GREY,
     BORDER-LEFT-COLOR=GREY,
     BORDER-RIGHT-COLOR=GREY,
     FONT='ARIAL',
     SIZE=10,
     STYLE=NORMAL,
$
TYPE=DATA,
     COLUMN=N2,
     BORDER-TOP-COLOR=GREY,
     BORDER-BOTTOM-COLOR=GREY,
     BORDER-LEFT-COLOR=GREY,
     BORDER-RIGHT-COLOR=GREY,
     FONT='ARIAL',
     SIZE=10,
     STYLE=NORMAL,
$
TYPE=DATA,
     COLUMN=N3,
     BORDER-TOP-COLOR=GREY,
     BORDER-BOTTOM-COLOR=GREY,
     BORDER-LEFT-COLOR=GREY,
     BORDER-RIGHT-COLOR=GREY,
     FONT='ARIAL',
     SIZE=10,
     STYLE=NORMAL,
$
TYPE=TITLE,
     COLUMN=N1,
     BORDER-TOP-COLOR=GREY,
     BORDER-BOTTOM-COLOR=GREY,
     BORDER-LEFT-COLOR=GREY,
     BORDER-RIGHT-COLOR=GREY,
     FONT='ARIAL',
     SIZE=10,
     STYLE=BOLD,
$
TYPE=TITLE,
     COLUMN=N2,
     BORDER-TOP-COLOR=GREY,
     BORDER-BOTTOM-COLOR=GREY,
     BORDER-LEFT-COLOR=GREY,
     BORDER-RIGHT-COLOR=GREY,
     FONT='ARIAL',
     SIZE=10,
     STYLE=BOLD,
$
TYPE=TITLE,
     COLUMN=N3,
     BORDER-TOP-COLOR=GREY,
     BORDER-BOTTOM-COLOR=GREY,
     BORDER-LEFT-COLOR=GREY,
     BORDER-RIGHT-COLOR=GREY,
     FONT='ARIAL',
     SIZE=10,
     STYLE=BOLD,
$
TYPE=SUBFOOT,
     BORDER-TOP-COLOR=GREY,
     BORDER-BOTTOM-COLOR=GREY,
     BORDER-LEFT-COLOR=GREY,
     BORDER-RIGHT-COLOR=GREY,
     FONT='ARIAL',
     SIZE=10,
     STYLE=BOLD,
     JUSTIFY=RIGHT,
     HEADALIGN=BODY,
$
ENDSTYLE
END



WebFOCUS 8.2.03
z/OS
 
Posts: 66 | Registered: May 20, 2013Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED] Remove blank line before subfoot

Copyright © 1996-2020 Information Builders