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.



Read-Only Read-Only Topic
Go
Search
Notify
Tools
Across Plus
 Login/Join
 
Gold member
posted
I have the following code which will provide 3 columns after the ACROSS columns. I can get the data to alternate colors in my styling but I cannot do anything with the Titles or column headings. The problem I think is that they actually appear on the same line as the ACROSS data. Any Sugestions

Sorry forgot to post the code:


DEFINE FILE VW_RPT_AIR_RAW_DATA
ENDDTR/MDYY ='&ENDDTMDYY.EVAL';
ENDDT/YYMD=ENDDTR;
STRTDT/YYMD= DATEADD(ENDDT,'M',-12);
RDATE/tMYY=RESULT_DATE;
TDATE/YYMD=RESULT_DATE;
END
TABLE FILE VW_RPT_AIR_RAW_DATA
SUM
RESULT/D12.2 AS ''
BY UNIT_NAME AS 'Proc Unit Ident'
BY PARAM_NAME AS 'Param Name'
BY RESULT_UNIT AS 'Unit'
ACROSS RDATE AS ''
COMPUTE
AVERAGE/D12.2 = ( C1 + C2 + C3 + C4 + C5 + C6 + C7 + C8 + C9 + C10 + C11 + C12 ) / 12;
AS 'Average'
COMPUTE
MINI/D12.2 = MIN(C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12);
AS 'Minimum'
COMPUTE
MAXI/D12.2 = MAX(C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12);
AS 'Maximum'
HEADING
"eCAT PI Raw Data Report"
"Site: "End Date: &ENDDT"
" "
WHERE SITE EQ '&SITE';
WHERE ( TDATE GT STRTDT ) AND ( TDATE LE ENDDT );

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


Duane

WebFOCUS 8.0.7
DS 8.0.7 AS 8.0.7
Windows
Output: Excel, HTML, PDF, AHTML,Mobile
In Focus 1982
 
Posts: 83 | Location: Princeton NJ | Registered: October 26, 2007Report This Post
Expert
posted Hide Post
Duane,

Please post your code (and preferably within
[code]
[/code]
tags).

Cheers,


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
Try something like this.

TYPE=ACROSSTITLE,
ACROSS=1,
BACKCOLOR='SILVER',


In Focus since 1993. WebFOCUS 7.7.03 Win 2003
 
Posts: 1903 | Location: San Antonio | Registered: February 28, 2005Report This Post
Gold member
posted Hide Post
Prarie,

Works for the months but not the computed fields (MIN MAX and AVE)


Duane

WebFOCUS 8.0.7
DS 8.0.7 AS 8.0.7
Windows
Output: Excel, HTML, PDF, AHTML,Mobile
In Focus 1982
 
Posts: 83 | Location: Princeton NJ | Registered: October 26, 2007Report This Post
Expert
posted Hide Post
Try

TYPE=ACROSSVALUE, STYLE=BOLD, $


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
quote:
TYPE=ACROSSTITLE,
ACROSS=1,
BACKCOLOR='SILVER',



ok HERE IS WHAT IS GIVING ME THE DISIRED RESULTS: I removed all styling that delt with an ACROSS. Then rather than selecting the column or data and doing a right click I went in at the report level icon on\in DS. Scrolled to ACROSS COlumn and made my selections. It now works.

Please note you need both of these: The first Acrossvalue takes care of the COMPUTED fields the second takes care of the DATA from the ACROSS:
TYPE=ACROSSVALUE,
COLOR='BLACK',
BACKCOLOR='GRAY',
STYLE=BOLD,
TOPGAP=0.013889,
BOTTOMGAP=0.027778,
JUSTIFY=LEFT,
$
TYPE=ACROSSVALUE,
ACROSS=1,
COLOR='BLACK',
BACKCOLOR='GRAY',
TOPGAP=0.013889,
BOTTOMGAP=0.027778,
$


Thanks for the help and sugestions.

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


Duane

WebFOCUS 8.0.7
DS 8.0.7 AS 8.0.7
Windows
Output: Excel, HTML, PDF, AHTML,Mobile
In Focus 1982
 
Posts: 83 | Location: Princeton NJ | Registered: October 26, 2007Report This Post
Expert
posted Hide Post
It would help more if you showed us the generated code of the steps you took.


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
  Powered by Social Strata  

Read-Only Read-Only Topic


Copyright © 1996-2020 Information Builders