Table in Report

Kundan

Registered User.
Local time
Today, 06:33
Joined
Mar 23, 2019
Messages
118
In middle of a report if I want to display data in tabular form, how do I do it?
Is there a predefined tabular structure whose rows can grow and shrink according to data content?
 
Display data on report with data controls, normally textboxes. Report textboxes shrink and grow if CanGrow and CanShrink properties are set to Yes. Making a 'tabular' appearance of variable height textboxes would probably require use of line controls or VBA code to set height of textboxes to the same measure for each record.
 
Last edited:
Use a subreport. If you haven't defined relationships between the two tables, you will need to manually set the master/child link.
 

Users who are viewing this thread

Back
Top Bottom