Subform (1 Viewer)

Jonny45wakey

Member
Local time
Today, 08:35
Joined
May 4, 2020
Messages
40
Hi I have a form called "frmTransactMovements" which has a checkbox called "Approved" on it.

On the above form is a Subform called "frmDocMovements" and it has a combobox called "state_Id"

Is there a way that when a certain value in "state_id" combobox is selected, after update it ticks the "Approved" check box on the form?

Thanks

Jonny
 

Gasman

Enthusiastic Amateur
Local time
Today, 08:35
Joined
Sep 21, 2011
Messages
14,050
Perhaps place in the AfterUpdate of the combobox, something along the lines of
Code:
If combobox="whatever" then
    Me.Parent.checkbox = True
End If
Amend the names to suit.

HTH
 

Users who are viewing this thread

Top Bottom