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] Having tables in excel side by side

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[SOLVED] Having tables in excel side by side
 Login/Join
 
Member
posted
Hi,
In webfocus 7.1,i am having two tables in one fex file.I want to get these two tables side by side in excel .using format exl2k ,i am getting the tables one after the other .is it possible to get the tables side by side? Idea

This message has been edited. Last edited by: Kerry,
 
Posts: 10 | Registered: July 19, 2006Report This Post
Virtuoso
posted Hide Post
Check out this
http://techsupport.informationbuilders.com/sps/11682038.html


In Focus since 1993. WebFOCUS 7.7.03 Win 2003
 
Posts: 1903 | Location: San Antonio | Registered: February 28, 2005Report This Post
Member
posted Hide Post
Hi Prarie,
With the help of techsupport site which you suggested ,I was able to get 2 different tables in excel side by side.Thanks a ton for your support. Good One
 
Posts: 10 | Registered: July 19, 2006Report This Post
Virtuoso
posted Hide Post
Great!


In Focus since 1993. WebFOCUS 7.7.03 Win 2003
 
Posts: 1903 | Location: San Antonio | Registered: February 28, 2005Report This Post
<VenuPalvai>
posted
Try this

TABLE FILE CAR
SUM SALES
BY COUNTRY
ON TABLE HOLD AS HLDFILE1 FORMAT HTMTABLE
ON TABLE NOTOTAL
END


TABLE FILE CAR
SUM SALES
BY MODEL
ON TABLE HOLD AS HLDFILE2 FORMAT HTMTABLE
ON TABLE NOTOTAL
END
SET HTMLFORMTYPE=XLS

-* Below code is not showing in the page properly
-* All you have to do is place the files in html table row side by side.



-HTMLFORM BEGIN
<TABLE>
<TR>
<TD>
!IBI.FIL.HLDFILE1;
</TD>
<TD>
!IBI.FIL.HLDFILE2;
</TD>
</TR>
</TABLE>
-HTMLFORM END

This message has been edited. Last edited by: <VenuPalvai>,
 
Report This Post
Gold member
posted Hide Post
quote:
http://techsupport.informationbuilders.com/sps/11682038.html


this link doesn't work, is there a new link?


8007
Windows 7, PDF, Excel
 
Posts: 75 | Registered: September 03, 2013Report This Post
<Kathryn Henning>
posted
Hi Mikey,

There isn't a new link to this document. Here are the original contents:

Problem Section

Is there a way with COMPOUND EXL2K reports to allow two of the reports on
the same worksheet to be side-by-side instead of top-down? For example,
the first worksheet would consist of one report and the second worksheet
would have two reports by next to each other on the worksheet instead of
one after the other.

In this particular case, the two side-by-side reports are from the
same file. Only the selection on the same field is different for the
two reports.

Solution Section

The COMPOUND EXL2K option does not allow for side-by-side reports in the
output. However, you could combine the necessary data to a single file
and produce a single report that looks as if two separate reports were
created on the worksheet.

This technique demonstrates how to get the data into a format to be
side-by-side when you generate the COMPOUND EXL2K file.

 
DEFINE FILE CAR
BLANK/A1 WITH COUNTRY=' ';
END
MATCH FILE CAR
PRINT COUNTRY AS FCOUNTRY
      CAR AS FCAR
      MODEL AS FMODEL
      RCOST AS FRCOST
BY BLANK
IF COUNTRY EQ FRANCE
RUN
FILE CAR
PRINT COUNTRY AS ECOUNTRY
      CAR AS ECAR
      MODEL AS EMODEL
      RCOST AS ERCOST
BY BLANK
IF COUNTRY EQ ENGLAND
AFTER MATCH HOLD AS EFCAR OLD-OR-NEW
END
-RUN
TABLE FILE CAR
HEADING
"Report 1: W Germany"
PRINT DCOST BY COUNTRY BY CAR
IF COUNTRY EQ 'W GERMANY'
ON TABLE PCHOLD FORMAT EXL2K OPEN
ON TABLE SET STYLE *
type=report, color=red, $
type=data, backcolor=yellow, $
type=heading, color=blue, $
END
TABLE FILE EFCAR
HEADING
" "
" "
"Report 2: France and Report 3: England"
PRINT FCOUNTRY AS COUNTRY
      FCAR AS CAR
      FMODEL AS MODEL
      FRCOST AS RCOST
      BLANK AS ''
      BLANK AS ''
      ECOUNTRY AS COUNTRY
      ECAR AS CAR
      EMODEL AS MODEL
      ERCOST AS RCOST
ON TABLE PCHOLD FORMAT EXL2K CLOSE
ON TABLE SET STYLE *
type=report, color=lime, backcolor=fuschia, style=bold, $
type=title, color=black, style=bold+italic, $
type=heading, backcolor=black, $
END
 


Regards,

Kathryn
 
Report This Post
Expert
posted Hide Post
except that they're not side by side, there on 2 separate tabs
???

venu's solution works. nice!




In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
 
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003Report 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] Having tables in excel side by side

Copyright © 1996-2020 Information Builders