Im trying to click on Customer name on the form and it takes me to "all" the forms related to that particular customer.
I have two types of records for each customer i.e. Shipped orders & Pending Orders.
No I want to have separate code or buttons for it. when I click on the Customer name under Pending heading, It should take me to the orders that are Pending only and same for the Shipped.
A check box determines whether a record has been shipped or not. if its ticked, record has been shipped, if Un ticked, means its still pending.
This code sworkd perfect in opening all the records":
DoCmd.OpenForm "Home", , , "Customer=" & aa.Value
what changes can I make only to open Shipped.
Thanks in advance
I have two types of records for each customer i.e. Shipped orders & Pending Orders.
No I want to have separate code or buttons for it. when I click on the Customer name under Pending heading, It should take me to the orders that are Pending only and same for the Shipped.
A check box determines whether a record has been shipped or not. if its ticked, record has been shipped, if Un ticked, means its still pending.
This code sworkd perfect in opening all the records":
DoCmd.OpenForm "Home", , , "Customer=" & aa.Value
what changes can I make only to open Shipped.
Thanks in advance