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.
DEFINE FILE CAR BLK/A1=''; END TABLE FILE CAR PRINT COUNTRY CAR MODEL BODYTYPE BLK AS '' SEATS DEALER_COST RETAIL_COST SALES BLK AS '' LENGTH WIDTH HEIGHT WEIGHT WHEELBASE BY BLK NOPRINT ON TABLE SUBTOTAL AS 'TOTAL' ON TABLE COLUMN-TOTAL AS 'Grand Total'
ON BLK SUBHEAD "Why does this work in HTML but not EXL07" "" HEADING "This will colspan4<0+> <0+>This will colspan4<0+> <0+>This will colspan5" -*ON TABLE PCHOLD FORMAT EXL07 ON TABLE SET STYLE * UNITS=IN, SQUEEZE=ON, ORIENTATION=LANDSCAPE, GRID=ON, $ TYPE=REPORT, FONT='Verdana', SIZE=10, $ TYPE=TABHEADING, FONT='Verdana', JUSTIFY=LEFT, COLOR=BLACK, STYLE=BOLD, SIZE=12, $
That is not what I need. Run it in HTML and you will see how it should look.
The ""Why does this work in HTML but not EXL07" should stay at the top and about each column should be the span "This will colspan4<0+> <0+>This will colspan4<0+> <0+>This will colspan5"
Run it as is and you will see that the COLSPAN works for both ITEM1 and ITEM2 but ITEM2 is not displaying HELLO. If you comment out the call for ITEM1, HELLO shows up but ITEM1 is now only over the first column (as it should without call).
TABLE FILE CAR
SUM SALES BY COUNTRY BY CAR BY MODEL BY SEATS BY CAR
ON COUNTRY SUBHEAD
"This is my subhead<0+>HELLO"
" "
"Country is:<COUNTRY Car is:<CAR"
"Model is:<MODEL"
IF COUNTRY EQ 'ENGLAND'
ON TABLE PCHOLD FORMAT EXL07
ON TABLE SET PAGE-NUM OFF
ON TABLE SET STYLESHEET *
TYPE=SUBHEAD, HEADALIGN=BODY, $
TYPE=SUBHEAD, LINE=1, ITEM=1, COLSPAN=2, JUSTIFY=CENTER, $
TYPE=SUBHEAD, LINE=1, ITEM=2, COLSPAN=2, JUSTIFY=CENTER, $
ENDSTYLE
END
Again this works fine in HTML and EXL2K Is <0+> the right function to separate the two items?
TABLE FILE CAR SUM SALES BY COUNTRY BY CAR BY MODEL BY SEATS BY CAR ON COUNTRY SUBHEAD "This is my subhead<+0>HELLO<+0>" " " "Country is:<COUNTRY Car is:<CAR" "Model is:<MODEL" IF COUNTRY EQ 'ENGLAND' ON TABLE PCHOLD FORMAT EXL07 ON TABLE SET PAGE-NUM OFF ON TABLE SET STYLE * TYPE=SUBHEAD, HEADALIGN=BODY, STYLE=BOLD, $ TYPE=SUBHEAD, LINE=1, ITEM=1, COLSPAN=2, JUSTIFY=CENTER, $ TYPE=SUBHEAD, LINE=1, ITEM=2, COLSPAN=2, JUSTIFY=CENTER, $ ENDSTYLE END