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 trying to hightlighg a specific cell based on conditional logic and it works, kinda. The problem is when the column in question is used as a BY value in the report definition, the conditional formatting gets applied to all the cells in the group regardless of whether there is data present. Here is my CAR example fex:
-* File colortest2.fex
TABLE FILE CAR PRINT COUNTRY NOPRINT SALES BY COUNTRY BY CAR BY MODEL WHERE (SALES GT 0); ON TABLE PCHOLD FORMAT EXL2K
When you run this you will see it sets the back color of the model column to gray where the model is ALFA ROMEO, however as there are multiple rows for this BY value it ends up coloring all the cells gray. I only want the cell with the words ALFA ROMEO in it to be affected.
Is anyone aware of a technique to achieve this?
As always any insight you guys can offer will be greatly appreciated.
Thanks,
Rayden.
Web Focus version 7.1.4 Server Windows Server 2003
TABLE FILE CAR PRINT COUNTRY NOPRINT SALES COMPUTE V_CAR/A20=IF CAR EQ LAST CAR THEN '' ELSE CAR; NOPRINT BY COUNTRY BY CAR BY MODEL WHERE (SALES GT 0); ON TABLE PCHOLD FORMAT EXL2K
D: WF 7.6.2 P. : WF 7.6.2 on W2003 ------------------------------------------------------------------ I see myself as an intelligent, sensitive human, with the soul of a clown which forces me to blow it at the most important moments.
That is perfect, thanks. So if I use a virtual field for the comparisons it works but using the Data Column value it does not. That is what I needed to know.
Thanks again for the fast and accurate response!!
Rayden.
Web Focus version 7.1.4 Server Windows Server 2003