V Vugar Registered User. Local time Tomorrow, 00:59 Joined Sep 15, 2015 Messages 55 Oct 22, 2015 #1 Hi, I have 2 field: Status and Project. Can I set default value for Status 1. if Project is blank status = purchase 2. if Project is not blank status = return thank you
Hi, I have 2 field: Status and Project. Can I set default value for Status 1. if Project is blank status = purchase 2. if Project is not blank status = return thank you
L llkhoutx Registered User. Local time Today, 15:59 Joined Feb 26, 2001 Messages 4,018 Oct 22, 2015 #2 On the form OnLoad or OnCurrent event, as appropriate: PHP: If me.project & "" = "" then me.project = me.purchase or [the purchase value, where ever or what ever it is].
On the form OnLoad or OnCurrent event, as appropriate: PHP: If me.project & "" = "" then me.project = me.purchase or [the purchase value, where ever or what ever it is].