Enter Parameter Value

david.paton

Registered User.
Local time
Today, 15:12
Joined
Jun 26, 2013
Messages
338
Hi,

I have a problem when I try to open a form called frmCrisisSupportWorkers from a database I am making. When I do, a message box keeps appearing that says "Enter Parameter Value: tblTCLocation.tclcation" but I don't know where this is coming from or why it is appearing.

I have been trying to get the search function of the database working and this function appears to work once you hit ok but I don't know how you get rid of this message box. Any help would be appreciated.

I have attached my database.

Thanks in advance,
Dave
Dave
 

Attachments

Most often these things are left behind in the OrderBy property of the form after a field name has been changed in the RecordSource. They can also be in the ConditionalFormatting.

Looks like you probably changed a name of a field.
 
I did change the name of a field but I can't find the OrderBy property to check if the old field names are in there. Where should I look?
 
Open the form in design view.

Turn on the Properties window.

Be sure you have the Form properties rather than one of the controls. Order By is on the Data Tab
 
What happens if you directly run the query that is the RecordSource property of the form?
 
I have a text box where you type criteria in and it searches through the records looking for that criteria. If I type in something and click the button when the form is open, it opens the query with the results that match the criteria.
 
What is the RecordSource property of the form?

Usually it is a query and it seems that query has a reference to the old field name.
 
Not sure what happened but the orderby property appeared. It is:
[tblCrisisSupportWorkers].[cCSWID], [tblCrisisSupportWorkers].[cLastName]

The record source is:
tblCrisisSupportWorkers
 
Try installing V-tools and use the Total Deep Search to find the term it is asking for.
 
Thanks for that. Total deep search showed me where to find the error.
 

Users who are viewing this thread

Back
Top Bottom