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.
I cannot squeeze the column width to exact 11. When I try squeeze the column for width 11 either it is increase or decrease. I appreciate any one have suggestion how to get exact column width for 11 and 13.
-*this below code produce the column width 11.14 not exactly 11.
TYPE=REPORT,
COLUMN=N19,
SQUEEZE=0.847222,
$
-*this below code produce the column width 13.14 not exactly 13.
TYPE=REPORT,
COLUMN=N25,
SQUEEZE=0.986111,
$
Output in XLSX format
Thank you, V_AniThis message has been edited. Last edited by: FP Mod Chuck,
Looks like Excel is proportioning the cell width based on the cell contents data and font size.
You can influence this a bit but once Excel takes over, you're going to get an approximation of the width as it 'helps' you present your data.
TABLE FILE CAR
SUM
COMPUTE COUNTRY_11/A10 = COUNTRY;
COMPUTE CAR_13/A24 = MODEL;
BY COUNTRY NOPRINT
BY MODEL NOPRINT
ON TABLE PCHOLD FORMAT XLSX
ON TABLE SET STYLE *
TYPE=REPORT,SQUEEZE=ON,SIZE=6,$
TYPE=REPORT,
COLUMN=N1,
WRAP=11,
$
TYPE=REPORT,
COLUMN=N2,
WRAP=13
$
ENDSTYLE
END