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.
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
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