[Search for users] [Overall Top Noters] [List of all Conferences] [Download this site]

Conference ilbbak::ibi_focus

Title:FOCUS, from INFORMATION BUILDERS
Moderator:ZAYIUS::BROUILLETTE
Created:Thu Feb 19 1987
Last Modified:Mon May 05 1997
Last Successful Update:Fri Jun 06 1997
Number of topics:615
Total number of notes:1779

344.0. "ACROSS error message" by WJOUSM::VEZINA () Tue May 29 1990 15:30

I'm trying to create a report which prints across the page.  When I execute
the fex below, I get the following error message: NUMBER OF VALUES RETRIEVED
FOR ACROSS EXCEED 64.  From reading the documentation, I understand 64 is
a limitation with ACROSS.  Is there any way around this?



DEFINE FILE CAP
DCQ_ID/I1 = EDIT (D_QUESTN_ID);
END
TABLE FILE CAP
SUM DCQ_EVL_RESP IN +0
ACROSS DCQ_ID NOPRINT 
END

Thanks,
Kris

T.RTitleUserPersonal
Name
DateLines
344.1Avoid the limit!CRATE::HERSHMANWed May 30 1990 05:4013
Three possibilities:

(1) If you only need selected values, not all, specify them;
     ACROSS <field> COLUMNS <val1> AND <val2> AND ...    [2-37]

(2) If you can manage with ranges instead of single values:
    ACROSS <field> IN-GROUPS-OF ...                       [2-37/38]

(3) Break the file up into selected ranges, and report on each 
range independently.


Brian Hershman