If the project number itself is in a textbox, e.g. txtProjNo, and the corresponding label is called, e.g. lblProjNo, you could do this on a report's detail section's ON FORMAT event
Me.lblProjNo.Visible = (Me.txtProjNo = 1)
This will make it invisible except for when the project number is one.
Greg Serrano
Michigan Dept. of Environmental Quality, Air Quality Division
|