R
Randyfprf
I Have 2 Datasheet subforms, 1 ontop of the other.
I would like to make one visible and hide the other, based
on selection from cbo179. cbo179 has classID, Location,
StartDate, and categoryID, as the row source.
The subform should be visible based on CategoryID.
Have been trying this,
If Me![Combo179].Column(3) = "&[2]" Then
Me![Attendees subform].Visable = False
Me![Instructors subform].Visable = True
Me![Combo179].Column(3) = "&[1]"
Else
Me![Instructors subform].Visable = False
Me![Attendees subform].Visable = True
Me![Combo179].Column(3) = "&[2]"
End If
Or am I going about this the wrong way.
TYIA
Randy
I would like to make one visible and hide the other, based
on selection from cbo179. cbo179 has classID, Location,
StartDate, and categoryID, as the row source.
The subform should be visible based on CategoryID.
Have been trying this,
If Me![Combo179].Column(3) = "&[2]" Then
Me![Attendees subform].Visable = False
Me![Instructors subform].Visable = True
Me![Combo179].Column(3) = "&[1]"
Else
Me![Instructors subform].Visable = False
Me![Attendees subform].Visable = True
Me![Combo179].Column(3) = "&[2]"
End If
Or am I going about this the wrong way.
TYIA
Randy