First, make the Visible property of field Q1C = no. Then on the AfterUpdate event for field Q1, place code:
If me.q1 = 1 then
me.q1C.visible = true
else
' do nothing (comment this line out)
end if
Then on the OnCurrent property of the form, place this code:
me.q1C.visible = false
That...