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.
Hi, I want to comibe the mutiple cells into single cell. Is that possible in HTML format?
TABLE FILE CAR SUM CAR AS '' DEALER_COST AS '' OVER COUNTRY AS '' RETAIL_COST AS '' OVER MODEL AS '' COMPUTE BLANK1/A1=' '; AS '' OVER COMPUTE BLANK2/A1=' '; AS '' COMPUTE BLANK3/A1=' '; AS '' BY CAR NOPRINT BY COUNTRY NOPRINT BY MODEL NOPRINT
ON TABLE SET PAGE NOLEAD ON TABLE SET STYLE * TYPE=REPORT, SQUEEZE=ON, FONT='ARIAL', SIZE=8,GRID=ON, $ TYPE=HEADING, HEADALIGN=BODY,$ TYPE=HEADING, LINE=1, COLSPAN=2, $ ENDSTYLE ENDThis message has been edited. Last edited by: Kerry,
DEFINE FILE CAR
HEAD1/A50 = 'Car<BR>Country<BR>Model';
HEAD2/A50 = '<BR>Dealer Cost<BR>Retail Cost';
END
-*
TABLE FILE CAR
SUM
CAR AS '' DEALER_COST AS ''
OVER
COUNTRY AS '' RETAIL_COST AS ''
OVER
MODEL AS ''
COMPUTE BLANK1/A1=' '; AS ''
OVER
COMPUTE BLANK2/A1=' '; AS ''
COMPUTE BLANK3/A1=' '; AS ''
BY CAR NOPRINT
BY COUNTRY NOPRINT
BY MODEL NOPRINT
HEADING
"TEST REPORT 1"
"<HEAD1<+0><HEAD2"
ON TABLE SET PAGE NOLEAD
ON TABLE SET STYLE *
TYPE=REPORT, SQUEEZE=ON,
FONT='ARIAL', SIZE=8,GRID=ON,
$
TYPE=HEADING, HEADALIGN=BODY,$
TYPE=HEADING, LINE=1, COLSPAN=2, $
ENDSTYLE
END
WebFOCUS 7.7.05
Posts: 1213 | Location: Seattle, Washington - USA | Registered: October 22, 2007
Hi Dan, Thanks for the update. I really appreciate that. Is there a way similiar to display multiple data values as single cell. I mean the CAR,COUNTRY,MODEL values should be clubbed as a Single cell .
This is probably not what your looking for but....
DEFINE FILE CAR
Col1/A58 = CAR | '<BR>' | COUNTRY | '<BR>' | MODEL ;
Col2/A22 = FTOA(DEALER_COST,'(F7C)','A9') | '<BR>' | FTOA(RETAIL_COST,'(F7C)','A9') ;
END
TABLE FILE CAR
SUM
Col1 AS 'CAR<BR>COUNTRY<BR>MODEL'
Col2 AS 'DEALER_CODE<BR>RETAIL_COST'
BY CAR NOPRINT
BY COUNTRY NOPRINT
BY MODEL NOPRINT
HEADING
"TEST REPORT 1"
ON TABLE SET PAGE NOLEAD
ON TABLE SET STYLE *
TYPE=REPORT, SQUEEZE=ON,
FONT='ARIAL', SIZE=8,GRID=ON,$
TYPE=DATA, COLUMN=P2, JUSTIFY=RIGHT, $
TYPE=HEADING, HEADALIGN=BODY,$
TYPE=HEADING, LINE=1, COLSPAN=2, $
ENDSTYLE
END