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.
In Our EXL2K report, we have a field with D12.6 format. In Excle output we need to show only 2 decimal points(like 65.57) in each cell. If the customer click or double click the value(cell) in excel, need to display entire decimal value (like 65.57488) in formula bar or cell.
It's working in EXL07 output. But how to achieve this in EXL2K format.
Thanks..This message has been edited. Last edited by: <Emily McAllister>,
I recall seeing this solved in a different thread just yesterday.
It turns out that if your field format is D12.6 and you PRINT it to Excel using /D12.2, Excel will display the value with 2 fractional positions, but the cell value has 6!
Like so:
DEFINE FILE CAR
FIELD1/D12.6 = 12.345678;
END
TABLE FILE CAR
PRINT
CAR.COMP.CAR
FIELD1/D12.2
BY LOWEST CAR.ORIGIN.COUNTRY
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT XLSX
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = endeflt,
$
ENDSTYLE
END
WebFOCUS 8.1.03, Windows 7-64/2008-64, IBM DB2/400, Oracle 11g & RDB, MS SQL-Server 2005, SAP, PostgreSQL 11, Output: HTML, PDF, Excel 2010 : Member of User Group Benelux :
It's working well in EXL07 and XLSX output formats. But we need the same in EXL2K output.
DEFINE FILE CAR
FIELD1/D12.6 = 12.345678;
END
TABLE FILE CAR
PRINT
CAR.COMP.CAR
FIELD1/D12.2
BY LOWEST CAR.ORIGIN.COUNTRY
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT EXL2K
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = endeflt,
$
ENDSTYLE
END
My Understanding is XLSX/EXL07 output types sending entire decimal values to excel with D12.2 cell format where as EXL2K store the value as D12.2 format and then send to excel output.
Is there any way to override this...?
In my excel compound report, we have 4 reports including Pivot and dynamic excel sheet's(BYTOC). so that only we are using EXL2K output format.