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 have a requirement in Excel Report, I Executed a report it opened in Excel Format in "Sheet 1", in that I have a drill-down option. If I click on that, have to open the report in the same Excel file with a new worksheet not in a new excel file. Is there a way to achieve this?This message has been edited. Last edited by: <Kathryn Henning>,
TABLE FILE CAR
PRINT
COMPUTE XCOUNTRY/A50 = '<a href="#''' || COUNTRY || '''!A1">' || COUNTRY || '</a>' ; AS 'Country'
ON TABLE PCHOLD FORMAT EXL2K OPEN
ON TABLE SET STYLE *
TITLETEXT='Summary', $
TYPE=TITLE, STYLE=BOLD+UNDERLINE, COLOR=WHITE, BACKCOLOR=PURPLE,$
ENDSTYLE
END
DEFINE FILE CAR
PG1/A50='<a href="#''Summary''!A1">' || 'Summary' || '</a>' ;
END
TABLE FILE CAR
PRINT CAR MODEL
BY COUNTRY
FOOTING
"<PG1 <+0> <+0>"
ON TABLE PCHOLD FORMAT EXL2K BYTOC CLOSE
ON TABLE SET STYLE *
TYPE=FOOTING, HEADALIGN=BODY, STYLE=BOLD, COLSPAN=3,$
TYPE=FOOTING, ITEM=1, COLSPAN=1,$
TYPE=FOOTING, ITEM=2, COLSPAN=1,$
TYPE=FOOTING, ITEM=3, COLSPAN=1,$
TYPE=TITLE, STYLE=BOLD+UNDERLINE, COLOR=WHITE, BACKCOLOR=PURPLE,$
ENDSTYLE
END
-EXIT