Table in Report (1 Viewer)

Kundan

Registered User.
Local time
Yesterday, 21:58
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?
 

June7

AWF VIP
Local time
Yesterday, 20:58
Joined
Mar 9, 2014
Messages
5,424
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:

Pat Hartman

Super Moderator
Staff member
Local time
Today, 00:58
Joined
Feb 19, 2002
Messages
42,981
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

Top Bottom