Subform

Jonny45wakey

Member
Local time
Today, 05:02
Joined
May 4, 2020
Messages
48
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
 
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

Back
Top Bottom