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.
When using BYDISPLAY=ON with a multi-verb request for EXL2K FORMULA it only repeats the BY field values for some of the BY fields, but not all. Is there a way to get BYDISPLAY to work for all the BY fields?
Thanks,
John
WF 7.7.03, Windows 7, HTML, Excel, PDF
Posts: 225 | Location: San Francisco Bay Area, California | Registered: October 26, 2006
TABLE FILE CAR SUM SALES BY COUNTRY SUM SALES BY COUNTRY BY CAR PRINT SALES RCOST DCOST COMPUTE PROFIT/D6=RCOST - DCOST; BY COUNTRY BY CAR BY BODYTYPE ON COUNTRY SUBTOTAL ON TABLE SET BYDISPLAY ON ON TABLE SET HTMLCSS ON ON TABLE PCHOLD FORMAT EXL2K FORMULA END
and didn't have any problems. Is your example much more complex?
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
The next thing I'm try to get to work with this is to get a field to display a sequential number. This way when they've done sorting and want to reset the report back to its orignal sort order, all they have to do is sort by this field.
Doing a computer such as ROW_COUNTER/I11 = ROW_COUNTER + 1; doesn't work.
Any ideas?
Thanks,
John
WF 7.7.03, Windows 7, HTML, Excel, PDF
Posts: 225 | Location: San Francisco Bay Area, California | Registered: October 26, 2006
DEFINE FILE CAR
DUM/A1= ' ';
END
TABLE FILE CAR
SUM SALES
BY DUM NOPRINT
BY COUNTRY
SUM SALES
BY DUM NOPRINT
BY COUNTRY BY CAR
LIST SALES RCOST DCOST COMPUTE PROFIT/D6=RCOST - DCOST;
BY DUM NOPRINT
BY COUNTRY BY CAR BY BODYTYPE
ON COUNTRY SUBTOTAL
ON TABLE SET BYDISPLAY ON
ON TABLE SET HTMLCSS ON
ON TABLE PCHOLD FORMAT EXL2K FORMULA
END
Beware however of the sorting if you have SUBTOTALS...
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
The problem is that John wants the output in EXL2K FORMULA. This causes a circular definition in EXCEL because the LAST function is apparently not well implemented in EXL2K output.
Using LIST with a dummy field gives the numbering. As I said if John wants to be able to re-sort using the numbered lines when SUBTOTALs are used, those lines are not numbered...
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