Top of Report

D

Dwight

I have a report that consists of a "Page Header" that
prints on all pages except page 1. (=IIf([Page]=1,"",
[NameLine])

The "Detail" section consists of a few sub-reports. I
need to be able to determine what is printed on the first
line of the "Detail" section of each page. If the 1st
line is null, I need to evaluate the 2nd line to determine
if the text is from particular textbox from one of the sub-
report.

Basically here is what I am trying to accomplish:

If the "status title" on sub-report 1 is not null
do not add add a blank line
else
insert a blank line before "status information".
end if

**example 1**

[Page Header]
NameLine
[Detail]

status title
status information


**example 2**

[Page Header]
NameLine
[Detail]
{insert blank line}
status information


Thanks in advance!

Dwight
 
Top