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 doing some conditional formating in the repot header of a report in the GUI. I am trying to fomat text with a strikethrough format. I have searched and the only information I have found is to do it in the HTML layout painter and that is for the lunch page. I want the format to occur in the report itself. Any suggestions?This message has been edited. Last edited by: <Kathryn Henning>,
Thank you for the info. Is there a way then to make text not appear with the condition. I orrigianly made the text white, but it still printed when it was sent to the printer...
There is a post on conditional text in the Forum as I remember posting an answer. You can use a DEFINE with an IF condition to set the contents of a field which you then put in the header. If your condition is true, the text will appear; if false, it will not.
DEFINE FILE filename
HDRLINE/A50=IF CONDITION EQ 'TRUE' THEN 'THIS IS MY HEADING TEXT' ELSE ' ';
END
TABLE FILE filename
HEADING
"<HDRLINE"
...rest of program
END
Remember the above example is pseudo-code. You must customize it to your needs.
As Tony says, HTML do it with CSS styling. With Excel, you should be able to to do the same with some of the techniques in this forum, requires the use of CSS.
For PDF, you could try this
TABLE FILE CAR
HEADING
"TEXT<+0>————"
PRINT COUNTRY
ON TABLE PCHOLD FORMAT PDF
ON TABLE SET STYLE *
TYPE=HEADING, LINE=1, OBJECT=TEXT, ITEM=1, POSITION=1,$
TYPE=HEADING, LINE=1, OBJECT=TEXT, ITEM=2, POSITION=1,$
ENDSTYLE
END
domino is my personal fav, it puts the text in smallcaps which is quite elegant delicious for titles.This message has been edited. Last edited by: susannah,
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003