Focal Point
[SOLVED] Alternate Two colors in excel

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

November 04, 2011, 02:49 AM
Deepu
[SOLVED] Alternate Two colors in excel
 
Hi 

how to give Alternate Two colurs to record 

This is my code 

for "Total No Of Records" also to be change the colur 

can any one help me plz... 

DEFINE FILE CAR
DUMMY/I1 = '';
END

TABLE FILE CAR
SUM
BODYTYPE
SEATS 
DEALER_COST
COMPUTE ROWS/I5 = LAST ROWS + 1; NOPRINT
BY DUMMY NOPRINT
BY CAR
ON DUMMY SUBFOOT
"Total No OF Records :<TOT.ROWS"
ON TABLE PCHOLD FORMAT EXL2K
END 

This is output i need 
http://www.sumopaint.com/myimages/?s=huge&p=1[/IMG]

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


WebFOCUS 7.6
Windows, All Outputs
November 04, 2011, 09:32 AM
njsden
You do that through a style sheet definition.

...
ON TABLE SET STYLE *
TYPE=DATA, BACKCOLOR=(WHITE SILVER), $
ENDSTYLE
...




Prod/Dev: WF Server 8008/Win 2008 - WF Client 8008/Win 2008 - Dev. Studio: 8008/Windows 7 - DBMS: Oracle 11g Rel 2
Test: Dev. Studio 8008 /Windows 7 (Local) Output:HTML, EXL2K.
November 06, 2011, 01:00 AM
Deepu
i tried with that but i want to be apply Color Dynamic for "Total No Of Records"

how to do can any one help me plz


WebFOCUS 7.6
Windows, All Outputs
November 06, 2011, 03:39 PM
Waz
Here is one way, using njsden's suggestion, and conditional styling on the subfoot.

DEFINE FILE CAR
DUMMY/I1 = '';
END

TABLE FILE CAR
SUM COMPUTE TOT_COL/A1 = IF IMOD(CNT.CAR,2,'I1') EQ 0 THEN 'Y' ELSE 'S' ;
SUM
BODYTYPE
SEATS 
DEALER_COST
COMPUTE ROWS/I5 = LAST ROWS + 1; NOPRINT
BY DUMMY NOPRINT
BY CAR
ON DUMMY SUBFOOT
"Total No OF Records :<TOT.ROWS"

ON TABLE SET STYLE *
TYPE=DATA, BACKCOLOR=(YELLOW SILVER), $
TYPE=SUBFOOT, BACKCOLOR=YELLOW, WHEN=TOT_COL EQ 'Y', $
TYPE=SUBFOOT, BACKCOLOR=SILVER, WHEN=TOT_COL EQ 'S', $
ENDSTYLE

ON TABLE PCHOLD FORMAT EXL2K
END


But if your report is more complex, the calc will also be more complex.


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

November 07, 2011, 12:53 PM
Deepu
Thanks a lot waz its working fine ..


WebFOCUS 7.6
Windows, All Outputs
November 07, 2011, 03:37 PM
Waz
A little logic goes a long way.

Smiler


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!