In my report open handler, If I got:
Can i some how move the if statement to inside the With statement?. Something like:

Code:
if (case1 = true) then
With MyReport.lable1 .Caption="MyLable1": .Visible=True : End With
end if
Code:
With MyReport.lable1 if (...) then .Caption="MyLable1" end if: .Visible=True : End With