svgelacio
04-05-2009, 08:51 PM
How can i solved this error? is there a limit in the number of fields that a report contain? when I tried to remove some of the fields, the report comes out without any error. but I need to reflect all these fields in my report. Please help me on this.
Poppa Smurf
04-06-2009, 02:37 AM
How many fields are there? Also the detail section of the report has a finite length
svgelacio
04-06-2009, 02:44 AM
Im working on about 350 or more fields in one report. Also, this is on the report footer section im utilizing.
Poppa Smurf
04-06-2009, 03:31 AM
350 fields is a lot for a report. The report footer is also finite.
Have you look at grouping your fields and using subreports e.g. You have your main report then have several subreports on the main form?
svgelacio
04-06-2009, 03:38 AM
yeah this is already one of the sub reports i did, its actually 1 of 3 pages of my weekly report, I can no longer take off some of the fields since this is already the summary. I really have to figure out how to present it if the fields are finite.
sportsguy
04-12-2009, 06:46 AM
Have you tried concatenating similar query or table fields into one field?
example:
Select [FirstName]&" "&[MiddleInitial]&" "&[LastName] AS EMPLOYEENAME, [Address1]&" "&[Address2]&" "&[City]&", "&[State] AS ADDRESS, . . . .
that cuts down on the number of controls to place on the report
sportsguy
editolis
04-12-2009, 11:57 AM
If your qry is too complex then my opinion is to "split" your basic qry and to create 2 or 3 qry's with less fields - data in it's one, binding them by the ClientsCode for Example...
svgelacio
04-14-2009, 04:30 AM
Is there any other way like adjusting the number of fields to be accomodated in the options menu or something like that?