Focal Point
Getting Rid of Empty Space on Reports

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

March 28, 2006, 02:01 PM
BenC
Getting Rid of Empty Space on Reports
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?
March 28, 2006, 02:27 PM
Leah
Have you tried set page = nolead


Leah
March 28, 2006, 02:30 PM
Francis Mariani
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
March 28, 2006, 04:36 PM
BenC
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
March 28, 2006, 04:47 PM
Leah
Francis supplied an answer that works.


Leah
March 28, 2006, 04:49 PM
BenC
I needed to make it something like:

TOTAL for Column_Value1 by Column_Name2
March 29, 2006, 09:28 AM
Leah
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
March 29, 2006, 09:28 AM
Leah
TABLE FILE CAR
SUM CNT.MODEL
BY CAR
BY COUNTRY
ON CAR SUBFOOT
" "
"TOTAL FOR "<"COUNTRY FOR "<"CAR "<"C1"
" "
END


Leah
March 29, 2006, 09:30 AM
Leah
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
March 29, 2006, 09:51 AM
Kerry
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.
March 29, 2006, 10:00 AM
Leah
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
March 29, 2006, 10:46 AM
Tony A
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 
March 29, 2006, 10:53 AM
Leah
Thanks, Tony. A Smiler


Leah
March 30, 2006, 01:22 PM
BenC
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
March 30, 2006, 01:39 PM
Francis Mariani
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
March 30, 2006, 01:44 PM
Leah
Are you using across to need row totals. Might help if we knew what you trying to report.


Leah
March 30, 2006, 05:01 PM
BenC
I am not really using anything across.

But just columns, and totals. The totals are based on columns.
March 31, 2006, 10:44 AM
Kamesh
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
March 31, 2006, 10:45 AM
Kamesh
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
April 03, 2006, 12:33 PM
BenC
Thanks. It should be ok now.