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.
This is probably cake, but I am having a hard time. I have a column on my report included in the sort using BY. This means it only has data in it intermittantly in a report. If I try and use BACKCOLOR, Excel only fills the cells in the column with color if they have data in them. Is there any way to get it to fill the entire column consistently regardless of there being data present?
I am using 5.3.1 on a NT server.
Thanks,
Rayden.
Web Focus version 7.1.4 Server Windows Server 2003
We had this problem a while back and couldn't solve it. Try controlling the column shading to the color you want: TYPE=DATA, COLUMN=N2, WHEN N2 = ' ',$ (or: WHEN byfld eq ' ', $ )
WebFOCUS 7.6.11, WINDOWS, HTML, PDF, EXCEL
Posts: 77 | Location: Baltimore | Registered: May 31, 2006
If you don't want to turn the BYDISPLAY ON Use the BYFIELD again under the PRINT verb with NOPRINT OPTION Control the color of the displayed column based on the noprint column value.
Posts: 38 | Location: India | Registered: May 18, 2005
Mikel - When I turn on BYDISPLAY the report prints the country/model in every cell in the by column, I need the by column to only contain data for the first row of records for the group, so that won't work for me.
Venu - I think I have implemented your suggestion, but this won't work either for some reason. In my example I am looking at the value in the NOPRINT column (which I am assuming will always contain data as it is not a BY field). The BACKCOLOR is conditionally displayed for column 1. If you run the Fex you will see I am still getting no color in the 1st two columns when the BY knows to not display data in the ROW. I was hoping the WHEN would capture this so I added another test for blanks and that is not catching anything either, unless the column cell contains some other value (NULL or something) that the WHEN is not testing for.
If anyone has any other ideas, I am open to them
Thanks again!
Rayden
Web Focus version 7.1.4 Server Windows Server 2003
Rayden, If you want Aqua to print for all countries other than England or France then add a computed field and do your WHEN statement using it. Here is a revised version of your program.
TABLE FILE CAR PRINT COUNTRY NOPRINT COMPUTE AQUA/A1=IF COUNTRY EQ 'ENGLAND' OR 'FRANCE' THEN 'N' ELSE 'Y'; SALES BY COUNTRY BY CAR BY MODEL