Hi all,
I have an audit form which calculates a rating based on certain selections on the form.
The final rating is diaplayed in an unbound text box using the following code in the control source:
It works perfectly however, I want the user to have an option to updrade the rating (which is a discretional rating so there are no set paramaters)to 'Exceeds Requirement' upon click of a button.
Every time I try to asign a value 'on click' I get an error stating that I cannot assign a value to that object. Is there any way around this?
Seriously stuck and need to have this up and running ASAP.
I have an audit form which calculates a rating based on certain selections on the form.
The final rating is diaplayed in an unbound text box using the following code in the control source:
Code:
=IIf([txtScore]<51,"Below Requirement",IIf([txtScore]<100,"Feedback Required","Achieved Requirements"))
Every time I try to asign a value 'on click' I get an error stating that I cannot assign a value to that object. Is there any way around this?
Seriously stuck and need to have this up and running ASAP.
Comment