I have loaded DHookum's Concatenate module and am trying to concatenate a single field from a query into a text field on a preformatted report, without any success. My problem is I just don't get it. can you help?
SELECT [DME POC Listing].POCID, Concatenate("SELECT [DME POC Listing].Description FROM [DME POC Listing]
WHERE POCID=[POC Form].POCID") AS Description
FROM [DME POC Listing];
I mentioned that the results of the query are going into a single line on a official government report. I need to limit the text to the size of the field (about 2.5 inches and run the overflow into another page in the report footer. Is this possible?
I really appreciate you folks being a resource. I have learned a ton with your help. Thank you
SELECT [DME POC Listing].POCID, Concatenate("SELECT [DME POC Listing].Description FROM [DME POC Listing]
WHERE POCID=[POC Form].POCID") AS Description
FROM [DME POC Listing];
I mentioned that the results of the query are going into a single line on a official government report. I need to limit the text to the size of the field (about 2.5 inches and run the overflow into another page in the report footer. Is this possible?
I really appreciate you folks being a resource. I have learned a ton with your help. Thank you