Features Added in FOCUS 7.6.13

In this section:

Starting in FOCUS 7.6.13, EXL2K output format supports borders and orientation options.


Top of page

x
Excel (EXL2K Format) Style Enhancements

The StyleSheet options ORIENTATION=LANDSCAPE and BORDER=ON are now supported for EXL2K report output.

The BORDER attribute supports the same options as currently available for FORMAT PDF except for border options available in Adobe PDF but not available in Microsoft Excel:

Note: FORMAT EXL2K does not support the GRID=ON parameter.



Example: Styling the Orientation and Border for an EXL2K Report

The following report against the EMPLOYEE data source makes the orientation landscape and specifies dotted red borders:

TABLE FILE EMPLOYEE                                       
PRINT ACCTNUMBER AS 'Account Number' AND COMPUTE          
LAST3_ACCT/I3L = IMOD(ACCTNUMBER, 1000, LAST3_ACCT);      
BY LAST_NAME AS 'Last Name' BY FIRST_NAME AS 'First Name' 
WHERE (ACCTNUMBER NE 000000000) AND (DEPARTMENT EQ 'MIS');
ON TABLE HOLD FORMAT EXL2K FORMULA                        
ON TABLE SET STYLE *                                      
TYPE=REPORT, ORIENTATION=LANDSCAPE,BORDER=ON,             
BORDER-COLOR=RED,BORDER-STYLE=DOTTED,$                    
TYPE=TITLE, SIZE=12, STYLE=BOLD, $                        
END                                                       

The output is:


Information Builders