Focal Point Banner


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.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [CLOSED] Conditional formatting in InfoAssist

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[CLOSED] Conditional formatting in InfoAssist
 Login/Join
 
Member
posted
Good morning,

Is there a way to apply conditional formatting to an across tab report to highlighting the lowest value on each row in red and the highest in green?

simple report example:

TABLE FILE ibisamp/car
SUM CAR.BODY.SALES
BY CAR.ORIGIN.COUNTRY
ACROSS CAR.COMP.CAR
END

Thanks.

This message has been edited. Last edited by: Tamra,


WebFOCUS 7 & 8
Windows, All Outputs
 
Posts: 16 | Registered: September 03, 2014Report This Post
Member
posted Hide Post
you might have to do some modification to the code. but this works

TYPE=DATA, ACROSSCOLUMN=SHIPPCT, BACKCOLOR=RGB(255 102 102), WHEN=SHIPPCT LE 99.00 ,STYLE=BOLD, $
TYPE=DATA, ACROSSCOLUMN=SHIPPCT, BACKCOLOR=RGB(51 255 51), WHEN=SHIPPCT GT 99.00,STYLE=BOLD, $
TYPE=DATA, STYLE=BOLD, WHEN=ORDER1 EQ 3, $


I tried to do it graphically and after tearing my hair out modified the code


8.0.1
 
Posts: 7 | Registered: August 22, 2016Report This Post
Platinum Member
posted Hide Post
Hi Brian,

There will be different ways to accomplish, but below code should work, or at least put you on track.
SET ASNAMES=ON
TABLE FILE ibisamp/car
SUM SALES
BY COUNTRY
BY CAR
ON TABLE HOLD AS HOLD1
END
-RUN

TABLE FILE HOLD1
SUM MAX.SALES AS HIGHESTVALUE 
    MIN.SALES AS LOWESTVALUE  
BY COUNTRY
ON TABLE HOLD AS HOLD2
END
-RUN

JOIN COUNTRY IN HOLD1 TO COUNTRY IN HOLD2

TABLE FILE HOLD1
SUM FST.LOWESTVALUE  NOPRINT
    FST.HIGHESTVALUE NOPRINT
BY COUNTRY

SUM SALES
BY COUNTRY
ACROSS CAR

ON TABLE SET STYLE *
TYPE=DATA, ACROSSCOLUMN=SALES, COLOR=RED,   WHEN=SALES EQ C1, $
TYPE=DATA, ACROSSCOLUMN=SALES, COLOR=GREEN, WHEN=SALES EQ C2, $
ENDSTYLE

END

Martin


WebFocus 8206M, iWay DataMigrator, Windows, DB2 Windows V10.5, MS SQL Server, Azure SQL, Hyperstage, ReportCaster
 
Posts: 168 | Registered: March 29, 2013Report This Post
Guru
posted Hide Post
Brian,

The suggestion from our helpful members is using code. Once you edit the report and add code you will not be able to use the GUI Tool.

For the styling within InfoAssist GUI tool try to work with the following to set up the colors you are looking for.

Highlight "field" in the Query pane > Right mouse click > "More" > "Traffic Light Conditions. - there are options within here

Let us know which way works for you.

Kind Regards,
Tamra Colangelo
IBI Technical Support
1-800-736-6130


WebFOCUS 8x - BI Portal, Developer Studio, App Studio, Excel, PDF, Active Formats and HTML5
 
Posts: 487 | Location: Toronto | Registered: June 23, 2009Report This Post
Member
posted Hide Post
quote:
y

Thank you very much for the responses and apologies for the delay in replying.

I've used InfoAssist completely with no coding following the ideas given by Martin vK.

Many Thanks.
Brian


WebFOCUS 7 & 8
Windows, All Outputs
 
Posts: 16 | Registered: September 03, 2014Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [CLOSED] Conditional formatting in InfoAssist

Copyright © 1996-2020 Information Builders