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     Getting Rid of Empty Space on Reports

Read-Only Read-Only Topic
Go
Search
Notify
Tools
Getting Rid of Empty Space on Reports
 Login/Join
 
Gold member
posted
Does anyone know how to format a report with styling and get rid of the two empty Lines at the top of the report where the header usually is?

Also for TOTALS, is there any way of get not showing the Column name for the total?
 
Posts: 68 | Registered: March 15, 2006Report This Post
Virtuoso
posted Hide Post
Have you tried set page = nolead


Leah
 
Posts: 1317 | Location: Council Bluffs, IA | Registered: May 24, 2004Report This Post
Expert
posted Hide Post
ON FIELDNAME SUBTOTAL AS ''


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
 
Posts: 10577 | Location: Toronto, Ontario, Canada | Registered: April 27, 2005Report This Post
Gold member
posted Hide Post
Thanks Leah, the Page header problem is now finished.

But as per the TOTALS, If I wanted to Put text after the value of the column name is that possible?

i.e TOTAL for by Column_Name
 
Posts: 68 | Registered: March 15, 2006Report This Post
Virtuoso
posted Hide Post
Francis supplied an answer that works.


Leah
 
Posts: 1317 | Location: Council Bluffs, IA | Registered: May 24, 2004Report This Post
Gold member
posted Hide Post
I needed to make it something like:

TOTAL for Column_Value1 by Column_Name2
 
Posts: 68 | Registered: March 15, 2006Report This Post
Virtuoso
posted Hide Post
You may have to use subfoots do do what I think you want. hope the code comes through okay

TABLE FILE CAR
SUM CNT.MODEL
BY CAR
BY COUNTRY
ON CAR SUBFOOT
" "
"TOTAL FOR " "
END


Leah
 
Posts: 1317 | Location: Council Bluffs, IA | Registered: May 24, 2004Report This Post
Virtuoso
posted Hide Post
TABLE FILE CAR
SUM CNT.MODEL
BY CAR
BY COUNTRY
ON CAR SUBFOOT
" "
"TOTAL FOR "<"COUNTRY FOR "<"CAR "<"C1"
" "
END


Leah
 
Posts: 1317 | Location: Council Bluffs, IA | Registered: May 24, 2004Report This Post
Virtuoso
posted Hide Post
In the second post, sorry for so much junk here, the "<" remove the double quote mark. Should we 'complain to IB about problems posting real code?


Leah
 
Posts: 1317 | Location: Council Bluffs, IA | Registered: May 24, 2004Report This Post
Expert
posted Hide Post
Hi Leah,

Not completely sure if this will resolve the issue, but can you please try to wrap your code with {code} and {/code} (replace {} with []) at the beginning and end, respectively?

Here is an example:

TABLE FILE CAR
...
code goes here
...
TOTAL "here1" FOR "here2"
...
END


Hope it helps. Big Grin

Cheers,

Kerry

This message has been edited. Last edited by: Kerry,


Kerry Zhan
Focal Point Moderator
Information Builders, Inc.
 
Posts: 1948 | Location: New York | Registered: November 16, 2004Report This Post
Virtuoso
posted Hide Post
Following Kerry's suggestion:

TABLE FILE CAR
SUM CNT.MODEL
BY CAR
BY COUNTRY
ON CAR SUBFOOT
" "
"TOTAL FOR [COUNTRY FOR [CAR [C1"
" "
END

This message has been edited. Last edited by: Kerry,


Leah
 
Posts: 1317 | Location: Council Bluffs, IA | Registered: May 24, 2004Report This Post
Expert
posted Hide Post
Hi Leah,

I think there is bit of a misunderstanding here that seems to be quite widespread.

When you want to add code to a posting, type [ code ]your code....[ /code ]. The [ code ] tags (without the spaces) are this bulletin boards (and most others that use UBB style coding) method of permitting unmodified text to display asis.

This will allow you to show exactly what code you want to (within reason e.g. the censorship mointor Smiler) and is the method that J.G. (both of them Red Face), Francis, Susannah etc. use.

Hope this helps

T



In FOCUS
since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2  
WebFOCUS App Studio 8.2.06 standalone on Windows 10 
 
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004Report This Post
Virtuoso
posted Hide Post
Thanks, Tony. A Smiler


Leah
 
Posts: 1317 | Location: Council Bluffs, IA | Registered: May 24, 2004Report This Post
Gold member
posted Hide Post
Thanks for all the help on this issue, but it didn't quite seem to work.

I needed the Row to have the totals as well.

So it would look like:

TOTAL for Column_Value1 by Column_Name2 Total1 Total2
 
Posts: 68 | Registered: March 15, 2006Report This Post
Expert
posted Hide Post
When posting embedded code, I've also taken to checking the "Disable HTML" option


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
 
Posts: 10577 | Location: Toronto, Ontario, Canada | Registered: April 27, 2005Report This Post
Virtuoso
posted Hide Post
Are you using across to need row totals. Might help if we knew what you trying to report.


Leah
 
Posts: 1317 | Location: Council Bluffs, IA | Registered: May 24, 2004Report This Post
Gold member
posted Hide Post
I am not really using anything across.

But just columns, and totals. The totals are based on columns.
 
Posts: 68 | Registered: March 15, 2006Report This Post
Master
posted Hide Post
Check this out,

TABLE FILE CAR
PRINT MODEL
DEALER_COST
RETAIL_COST
BY CAR
BY COUNTRY
-*ON COUNTRY SUBTOTAL AS ''
ON COUNTRY SUBFOOT
"TOTAL FOR END


Hope it helps,


WFConsultant

WF 8105M on Win7/Tomcat
 
Posts: 780 | Location: Florida | Registered: January 09, 2005Report This Post
Master
posted Hide Post
TABLE FILE CAR
PRINT MODEL
DEALER_COST
RETAIL_COST
BY CAR
BY COUNTRY
-*ON COUNTRY SUBTOTAL AS ''
ON COUNTRY SUBFOOT
"TOTAL FOR < CAR BY < COUNTRY < ST.DEALER_COST < ST.RETAIL_COST"
END


WFConsultant

WF 8105M on Win7/Tomcat
 
Posts: 780 | Location: Florida | Registered: January 09, 2005Report This Post
Gold member
posted Hide Post
Thanks. It should be ok now.
 
Posts: 68 | Registered: March 15, 2006Report 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     Getting Rid of Empty Space on Reports

Copyright © 1996-2020 Information Builders