Morning all.
I'm trying to place an if statement in an afterupdate event on a form.
the code I have is
this gives me a run time error, object required and highlights
I'd like the code to do nothing where the requirements to alter the job price are not met.
where am I going wrong?
I'm trying to place an if statement in an afterupdate event on a form.
the code I have is
Code:
If [Customer] Like "BRO001" And [Inv No] is null Then [Job_Price] = [Shots] * 27.5
this gives me a run time error, object required and highlights
Code:
If [Customer] Like "BRO001" And [Inv No] Is Null Then
I'd like the code to do nothing where the requirements to alter the job price are not met.
where am I going wrong?