D digit Registered User. Local time Today, 00:03 Joined Jan 23, 2003 Messages 44 Aug 25, 2003 #1 is there everyone who can tell because im new in VB- how can i make iif function in Access form with 2 text boxex, where if 1st text box is >0 then 2nd text box = 1st textbox*2
is there everyone who can tell because im new in VB- how can i make iif function in Access form with 2 text boxex, where if 1st text box is >0 then 2nd text box = 1st textbox*2
N namliam The Mailman - AWF VIP Local time Today, 01:03 Joined Aug 11, 2003 Messages 11,695 Aug 25, 2003 #2 do you want VBA or an IIF??? or a query? I am lost here... all are not that hard but a little more info on what you are trying to do??? Regards
do you want VBA or an IIF??? or a query? I am lost here... all are not that hard but a little more info on what you are trying to do??? Regards
W WayneRyan AWF VIP Local time Today, 00:03 Joined Nov 19, 2002 Messages 7,122 Aug 25, 2003 #3 digit, Me.txtbox2 = Iif(Me.textbox1 > 0, Me.textbox1 * 2, Me.textbox2) wayne