Hello,
I’m using Allen Browne’s ConcatRelated records function in Expr2: ConcatRelated("Exp","amplicons_failed_amps_with_depth","[sample_id] = """ & [sample_id] & """") to list records on a multi-page report. Each page pertains to a different record. The limit is 255 characters and the rest gets cut off. Is there another solution?
I’ve tried to populate a listbox and then loop through all the items and concatenate them but this does not work on the multi-page report.
Here is the query:
SELECT [tbl_failed_amplicons].[gene] & ' exon (' & [tbl_failed_amplicons].[Exon] & ') at depth ' & [tbl_failed_amplicons].[Depth] AS failed_amp, tbl_failed_amplicons.sample_id
FROM tbl_Samples INNER JOIN tbl_failed_amplicons ON tbl_Samples.sample_id = tbl_failed_amplicons.sample_id
WHERE (((tbl_failed_amplicons.sample_id)=[Reports]![rpt_Project_Report]![sample_id]));
Please suggest something,
Thank
I’m using Allen Browne’s ConcatRelated records function in Expr2: ConcatRelated("Exp","amplicons_failed_amps_with_depth","[sample_id] = """ & [sample_id] & """") to list records on a multi-page report. Each page pertains to a different record. The limit is 255 characters and the rest gets cut off. Is there another solution?
I’ve tried to populate a listbox and then loop through all the items and concatenate them but this does not work on the multi-page report.
Here is the query:
SELECT [tbl_failed_amplicons].[gene] & ' exon (' & [tbl_failed_amplicons].[Exon] & ') at depth ' & [tbl_failed_amplicons].[Depth] AS failed_amp, tbl_failed_amplicons.sample_id
FROM tbl_Samples INNER JOIN tbl_failed_amplicons ON tbl_Samples.sample_id = tbl_failed_amplicons.sample_id
WHERE (((tbl_failed_amplicons.sample_id)=[Reports]![rpt_Project_Report]![sample_id]));
Please suggest something,
Thank