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.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED] Multiple Cells into Single cell in HTML format

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[SOLVED] Multiple Cells into Single cell in HTML format
 Login/Join
 
<msam>
posted
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

HEADING
"TEST REPORT 1"
"CAR <+0> DEALER COST"
"COUNTRY <+0> RETAIL COST"
"MODEL <+0> "

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

This message has been edited. Last edited by: Kerry,
 
Report This Post
Expert
posted Hide Post
Which cells do you want to combine ?


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

 
Posts: 6347 | Location: 33°49'23.0"S, 151°11'41.0"E | Registered: October 31, 2006Report This Post
<msam>
posted
Hi,
I want to combine CAR,COUNTRY,MODEL as one cell and DEALER_COST and RETAIL_COST as one cell.Is that possible within HTML using the FOCUS Code?

Regards,
MSAM
 
Report This Post
Virtuoso
posted Hide Post
This seems to work.

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, 2007Report This Post
<msam>
posted
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 .

Regards,
MSAM
 
Report This Post
Virtuoso
posted Hide Post
I think merging vertical data cells will be very difficult. You can turn off the cell dividers in the StyleSheet with GRID=OFF.


WebFOCUS 7.7.05
 
Posts: 1213 | Location: Seattle, Washington - USA | Registered: October 22, 2007Report This Post
Expert
posted Hide Post
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


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

 
Posts: 6347 | Location: 33°49'23.0"S, 151°11'41.0"E | Registered: October 31, 2006Report This Post
Expert
posted Hide Post
Waz, that sure looks like what msam's looking for... Lucky for msam, it's an HTML report.


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
Proved me wrong! Nice job Waz.


WebFOCUS 7.7.05
 
Posts: 1213 | Location: Seattle, Washington - USA | Registered: October 22, 2007Report This Post
Expert
posted Hide Post
As Francis said, its an HTML report.

Just taking advantage of the output format.


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

 
Posts: 6347 | Location: 33°49'23.0"S, 151°11'41.0"E | Registered: October 31, 2006Report This Post
<msam>
posted
Waz,
Thanks for the help. That is what I was looking for.

Regards,
MSAM
 
Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED] Multiple Cells into Single cell in HTML format

Copyright © 1996-2020 Information Builders