B
Bob Quintal
Just branch around the code if it's nullI have this code on a control, but if DailyChargeRate1 is Null
I am getting an Access Error
Can I add to code , If tbDailyChargeRate1 is Null , Loop! ,
Stop! , Ignor! the rest of the code
Thanks If you can Help......Bob
Private Sub cmdFRate1_Click()
Me!tbDailyChargeRate1 = Me!tbDailyChargeRate1 + 1
End Sub
Private Sub cmdFRate1_Click()
if Not isnull(me!tbDailyChargeRate1 then
Me!tbDailyChargeRate1 = Me!tbDailyChargeRate1 + 1
End Sub