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.
Did you read the article I wrote as Prarie suggested? You can find it at the following URL. It explains a lot about positioning HEADING text which is what you are doing.
I see that you wanted a PDF output. You want the values of the exchange rates to be right-justified and the names of the currencies left-justified.
In DS you can use in the HEADING the Alignment Grid (right-click in the Heading box) and put your text in the boxes that will be formed. You can then adjust them by dragging. The code will look like this:
TABLE FILE CAR
SUM
SALES
BY COUNTRY
BY CAR
HEADING
"1 GBP =<+0>1,255680 <+0> EUR"
"1 GBP =<+0>202,418028 <+0> JPY"
"1 GBP =<+0>1,952147 <+0> USD"
" "
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT PDF
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
UNITS=IN,
SQUEEZE=ON,
ORIENTATION=PORTRAIT,
$
TYPE=REPORT,
GRID=OFF,
FONT='TIMES NEW ROMAN',
SIZE=10,
$
TYPE=HEADING,
LINE=1,
OBJECT=TEXT,
ITEM=1,
JUSTIFY=LEFT,
WIDTH=.667,
$
TYPE=HEADING,
LINE=1,
OBJECT=TEXT,
ITEM=2,
JUSTIFY=RIGHT,
WIDTH=.931,
$
TYPE=HEADING,
LINE=1,
OBJECT=TEXT,
ITEM=3,
JUSTIFY=LEFT,
WIDTH=.500,
$
TYPE=HEADING,
LINE=2,
OBJECT=TEXT,
ITEM=1,
JUSTIFY=LEFT,
WIDTH=.667,
$
TYPE=HEADING,
LINE=2,
OBJECT=TEXT,
ITEM=2,
JUSTIFY=RIGHT,
WIDTH=.931,
$
TYPE=HEADING,
LINE=2,
OBJECT=TEXT,
ITEM=3,
JUSTIFY=LEFT,
WIDTH=.500,
$
TYPE=HEADING,
LINE=3,
OBJECT=TEXT,
ITEM=1,
JUSTIFY=LEFT,
WIDTH=.667,
$
TYPE=HEADING,
LINE=3,
OBJECT=TEXT,
ITEM=2,
JUSTIFY=RIGHT,
WIDTH=.931,
$
TYPE=HEADING,
LINE=3,
OBJECT=TEXT,
ITEM=3,
JUSTIFY=LEFT,
WIDTH=.500,
$
TYPE=HEADING,
LINE=4,
OBJECT=TEXT,
ITEM=1,
JUSTIFY=LEFT,
WIDTH=.167,
$
ENDSTYLE
END
Notice the spot markers (<+0>) in the HEADING and the WIDTH attribute in the style sheet.
Daniel In Focus since 1982 wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF
Posts: 1980 | Location: Tel Aviv, Israel | Registered: March 23, 2006