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 am drilling down from a text in a HEADING. The heading BACKCOLOR is navy and the text COLOR is white. In HTML everything is fine. However when output is EXCEL, the color of the text is automatically set to blue by EXCEL. How can I set the color of the hyperlink in EXCEL to white?This message has been edited. Last edited by: Danny-SRL,
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
This piece works fine for me. Color remains as coded. WebFOCUS version 8.1 and Excel 2007.
TABLE FILE CAR
SUM
DEALER_COST
BY COUNTRY
ON TABLE PCHOLD FORMAT EXL2K
ON TABLE SET STYLE *
TYPE=DATA, COLUMN=N1, FOCEXEC=carsample(COUNTRY),COLOR=WHITE, BACKCOLOR=NAVY, $
ENDSTYLE
END
TABLE FILE CAR SUM SALES BY COUNTRY HEADING "DRILL" ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * INCLUDE=ENDEFLT,$ TYPE=DATA, COLUMN=COUNTRY, COLOR=WHITE, BACKCOLOR=NAVY, FOCEXEC=DD, $ TYPE=HEADING, JUSTIFY=CENTER, OBJECT=TEXT, ITEM=1, COLOR=WHITE, BACKCOLOR=NAVY, FOCEXEC=DD, $ ENDSTYLE END
Apparently, the included style overrides the local HEADING BACKCOLOR definition. Aaaaarrrgh!
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
This is the culprit. Not the Stylesheet. If I remove this Object and Item then It is working fine.
TABLE FILE CAR
SUM SALES BY COUNTRY
HEADING
"DRILL"
ON TABLE SET HTMLCSS ON
ON TABLE PCHOLD FORMAT EXL2K
ON TABLE SET STYLE *
INCLUDE=ENDEFLT,$
TYPE=DATA, COLUMN=COUNTRY, COLOR=WHITE, BACKCOLOR=NAVY, FOCEXEC=DD, $
TYPE=HEADING, JUSTIFY=CENTER, COLOR=WHITE, BACKCOLOR=NAVY, FOCEXEC=DD, $
ENDSTYLE
END
Thanks,
Ramkumar. WebFOCUS/Tableau Webfocus 8 / 7.7.02 Unix, Windows HTML/PDF/EXCEL/AHTML/XML/HTML5
Posts: 394 | Location: Chennai | Registered: December 02, 2009
Thanks Ram. However, I need the OBJECT and ITEM because my HEADING has many different objects and I want to drill from only one of them. I'll probably open a case if my customer insists...
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