I have the following code to move the License1, Label9, Unavailable1, and License2 controls on my report for one record out of 110. It works prefectly for this record and does not affect any of the records UP TO this one. However, it seems to be affecting all the records AFTER this one. I've tried adding an Else, but I don't know what "undoes" the property changes. I tried Default, but didn't work.
Code:
If SOC = "21-1011" Then
Me.License1.Top = 7200
Me.Label9.Top = 7800
Me.Unavailable1.Top = 8300
Me.License2.Top = 7450
End If