Focal Point
[SOLVED] Active Reports and formating

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/7647059906

September 19, 2011, 11:13 AM
rfbowley
[SOLVED] Active Reports and formating
This client is running 7.8.3 in all environments. I am trying to put a border pon the right side of a column. With:
ON TABLE PCHOLD FORMAT HTML
[\CODE]
the following works perfectly:
TYPE=REPORT,
	COLUMN=N1,
	BORDER-LEFT=OFF,
	BORDER-RIGHT=MEDIUM,
	BORDER-RIGHT-STYLE=DASHED,

$
change to:
[code]
ON TABLE PCHOLD FORMAT AHTML
[\CODE]
and no border.

Second Issue

Formating of negative numbers.  in HTML, 
[code]
TYPE=REPORT,
	COLUMN=RESOLVED,
	COLOR=RED,
	WHEN=RESOLVED LT 0,
$

in AHTML, the entire row is red.

Any thoughts?

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


Robert F. Bowley Jr.
Owner
TaRa Solutions, LLC

In WebFOCUS since 2001
September 20, 2011, 01:47 AM
MichaelBalle
Solution for the second issue:
 
TYPE=DATA,
  COLUMN=RESOLVED,
  COLOR=RED,
  WHEN=RESOLVED LT 0,
$


colors only the cell content to red.

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


WebFOCUS 7.6, 7.7
Windows, All Output formats
September 20, 2011, 09:23 AM
rfbowley
Thank You Michael, that does work.

For all I just noticed I have a typeo in the original post. Client has version 7.7.3


Robert F. Bowley Jr.
Owner
TaRa Solutions, LLC

In WebFOCUS since 2001