I am printing the address in the report.
If addressline2 is blank then I would like the city and state to move up.
Right now I get a blank line.
I tried the following code in On Format event.
If IsNull(cMAddress2) Then
addressline3.Top = 3
Else
addressline3.Top = 6
End If
However, the addressline3 prints on the top of the header. What am I doing wrong?
All help will be appreciated..
If addressline2 is blank then I would like the city and state to move up.
Right now I get a blank line.
I tried the following code in On Format event.
If IsNull(cMAddress2) Then
addressline3.Top = 3
Else
addressline3.Top = 6
End If
However, the addressline3 prints on the top of the header. What am I doing wrong?
All help will be appreciated..