G Gkirkup Registered User. Local time Today, 09:27 Joined Mar 6, 2007 Messages 628 Aug 27, 2015 #1 I have a form with several subforms. Based on a condition, I want to make one of the subforms NOT appear when that condition is true. How do I do that? Robert
I have a form with several subforms. Based on a condition, I want to make one of the subforms NOT appear when that condition is true. How do I do that? Robert
pbaldy Wino Moderator Staff member Local time Today, 09:27 Joined Aug 30, 2003 Messages 36,273 Aug 27, 2015 #2 Code: If Whatever Then Me.SubformControlName.Visible = False End If