I have a report with multiple sections. Some of the sections contain subreports in which I have included multiple string formulas. For some strange reason if I include only one formula in a subreport it work just fine, but if I include more than one, I either don't get ANY data, or I get incorrect data. Is there anyone who might be able to offer some assistance with this?
Here is an example:
against @respondents, the respondent(s), alleging violation of @Articles of the Code of Ethics of the National Association of REALTORS. The decision was as follows:
(Read the decision of the ethics Hearing Panel of the Professonal Standards Committee [Form E-11].)
Here are the formulas:
(@articles)
StringVar List;
List:=List+{tblArticles.ArticleNumber}+", ";
(@respondents)
IF Not {tblCaseLit.Complainant} THEN
StringVar List:= List + {tbl_Litigants.Fname} + " " +
{tbl_Litigants.Lname} + ", " else List;
List;
Thanks in advacne for your assistance!
Austin
Here is an example:
against @respondents, the respondent(s), alleging violation of @Articles of the Code of Ethics of the National Association of REALTORS. The decision was as follows:
(Read the decision of the ethics Hearing Panel of the Professonal Standards Committee [Form E-11].)
Here are the formulas:
(@articles)
StringVar List;
List:=List+{tblArticles.ArticleNumber}+", ";
(@respondents)
IF Not {tblCaseLit.Complainant} THEN
StringVar List:= List + {tbl_Litigants.Fname} + " " +
{tbl_Litigants.Lname} + ", " else List;
List;
Thanks in advacne for your assistance!
Austin