Adding new information to a report

A

au

I have a report that displays a list of variables.

var1
var2
var3

these variable names and the field info are stored in my
tables.

I only have one entry in the table for variable that are
arrays and they are displayed as follows:

var1
var2(5)
var3

I would like to display an additional line for each
iteration of an array as follows:

var1
var2(5)
var2_01
var2_02
var2_03
var2_04
var2_05
var3

Using VBA I am able to see if the Array Repeat (my field
name) has a value. I also found that I can add text to the
report using the report.print method. However, I cannot
figure out how to insert a new line (after the current
line) in order to add the non table information.

Please help! Is there a better way?
 
Top